Codota Logo
BasicElevationCoverage.<init>
Code IndexAdd Codota to your IDE (free)

How to use
gov.nasa.worldwind.globe.BasicElevationCoverage
constructor

Best Java code snippets using gov.nasa.worldwind.globe.BasicElevationCoverage.<init> (Showing top 2 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Dictionary d =
  • Codota Iconnew Hashtable()
  • Codota IconBundle bundle;bundle.getHeaders()
  • Codota Iconnew Properties()
  • Smart code suggestions by Codota
}
origin: NASAWorldWind/WorldWindAndroid

/**
 * Creates a new WorldWindow (GLSurfaceView) object.
 */
public WorldWindow createWorldWindow() {
  // Create the WorldWindow (a GLSurfaceView) which displays the globe.
  this.wwd = new WorldWindow(getContext());
  // Setup the WorldWindow's layers.
  this.wwd.getLayers().addLayer(new BackgroundLayer());
  this.wwd.getLayers().addLayer(new BlueMarbleLandsatLayer());
  // Setup the WorldWindow's elevation coverages.
  this.wwd.getGlobe().getElevationModel().addCoverage(new BasicElevationCoverage());
  return this.wwd;
}
origin: NASAWorldWind/WorldWindAndroid

@Override
protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  // Establish the activity content
  setContentView(this.layoutResourceId);
  setAboutBoxTitle("About the " + this.getResources().getText(R.string.title_basic_globe));
  setAboutBoxText("Demonstrates how to construct a WorldWindow with a few layers.\n" +
    "The globe uses the default navigation gestures: \n" +
    " - one-finger pan moves the camera,\n" +
    " - two-finger pinch-zoom adjusts the range to the look at position, \n" +
    " - two-finger rotate arcs the camera horizontally around the look at position,\n" +
    " - three-finger tilt arcs the camera vertically around the look at position.");
  // Create the WorldWindow (a GLSurfaceView) which displays the globe.
  this.wwd = new WorldWindow(this);
  // Add the WorldWindow view object to the layout that was reserved for the globe.
  FrameLayout globeLayout = (FrameLayout) findViewById(R.id.globe);
  globeLayout.addView(this.wwd);
  // Setup the WorldWindow's layers.
  this.wwd.getLayers().addLayer(new BackgroundLayer());
  this.wwd.getLayers().addLayer(new BlueMarbleLandsatLayer());
  this.wwd.getLayers().addLayer(new AtmosphereLayer());
  // Setup the WorldWindow's elevation coverages.
  this.wwd.getGlobe().getElevationModel().addCoverage(new BasicElevationCoverage());
}
gov.nasa.worldwind.globeBasicElevationCoverage<init>

Javadoc

Constructs a global elevation coverage with the WMS at https://worldwind26.arc.nasa.gov/wms.

Popular methods of BasicElevationCoverage

  • setTileFactory
  • setTileMatrixSet

Popular in Java

  • Creating JSON documents from java classes using gson
  • onRequestPermissionsResult (Fragment)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • runOnUiThread (Activity)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • BufferedReader (java.io)
    Reads text from a character-input stream, buffering characters so as to provide for the efficient re
  • FileOutputStream (java.io)
    A file output stream is an output stream for writing data to aFile or to a FileDescriptor. Whether
  • FileWriter (java.io)
    Convenience class for writing character files. The constructors of this class assume that the defaul
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • IsNull (org.hamcrest.core)
    Is the value null?
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now