Tabnine Logo
GroundOverlay.createAndSetLatLonBox
Code IndexAdd Tabnine to your IDE (free)

How to use
createAndSetLatLonBox
method
in
de.micromata.opengis.kml.v_2_2_0.GroundOverlay

Best Java code snippets using de.micromata.opengis.kml.v_2_2_0.GroundOverlay.createAndSetLatLonBox (Showing top 3 results out of 315)

origin: org.geoserver/kml

void encodeGroundOverlay(Folder container, Layer layer, int drawOrder, Envelope box) {
  GroundOverlay go = container.createAndAddGroundOverlay();
  go.setDrawOrder(drawOrder);
  Icon icon = go.createAndSetIcon();
  String href = WMSRequests.getGetMapUrl(request, layer, 0, box, new String[] { "width",
      "256", "height", "256", "format", "image/png", "transparent", "true" });
  icon.setHref(href);
  LOGGER.fine(href);
  // make sure the ground overlay disappears as the lower tiles activate
  addRegion(go, box, 128, 512);
  LatLonBox llBox = go.createAndSetLatLonBox();
  setEnvelope(box, llBox);
}
origin: org.geoserver.community/gs-wps-download

icon.setViewBoundScale(0.75);
LatLonBox gobox = go.createAndSetLatLonBox();
gobox.setEast(bbox.getMinX());
gobox.setWest(bbox.getMaxX());
origin: org.geoserver/kml

LatLonBox gobox = go.createAndSetLatLonBox();
gobox.setEast(box.getMinX());
gobox.setWest(box.getMaxX());
de.micromata.opengis.kml.v_2_2_0GroundOverlaycreateAndSetLatLonBox

Javadoc

Creates a new instance of LatLonBox and set it to latLonBox. This method is a short version for: LatLonBox latLonBox = new LatLonBox(); this.setLatLonBox(latLonBox);

Popular methods of GroundOverlay

  • createAndSetIcon
  • setName
  • <init>
  • getGroundOverlayObjectExtension
  • getGroundOverlaySimpleExtension
  • setAltitude
  • setAltitudeMode
  • setDrawOrder
  • setGroundOverlayObjectExtension
  • setGroundOverlaySimpleExtension
  • setLatLonBox
  • setLatLonBox

Popular in Java

  • Running tasks concurrently on multiple threads
  • setRequestProperty (URLConnection)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • findViewById (Activity)
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Collectors (java.util.stream)
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now