WebWorldWind/examples/GeoTiffExample.js
Endia Irizarry 52b1106a58 Commented boilerplate code for examples (from Annotations to ParseURLArgs). (#710)
* Add issue template for submitting issues

* Add pull request template

* Change "Note:" in pull request template

* Change "Note:" in pull request template

* Add CONTRIBUTING.md

- This CONTRIBUTING.md replaces "HowToContribute.md". The content in "HowToContribute.md" replaced, but merely ported to the new CONTRIBUTING.md.
- This document explains the expectations for contributing to the Web WorldWind repository. It includes information on how to submit a bug report, new feature suggestion, or a pull request.
- It also guides the user on the appropriate way to contact the WorldWind team with questions.

* Move contributing list under correct heading.

The list to contributing to Web WorldWind (reporting a bug, suggesting a new feature, creating a pull request) was under the wrong heading (Asking Questions). It is now under Contributing.

* Fix spacing

* Add bullet points

* Update CONTRIBUTING.md

Add bullet points to table of contents.

* Update CONTRIBUTING.md

- Deleted the opening sentences which offer an invitation to change WorldWind standards.
- Add Resources content about the WorldWind website, forum, and administrative contact.

* Fix spacing in CONTRIBUTING.md

- Fixed spacing in the last lines of CONTRIBUTING.md so that they are double-spaced.

* Fix email link in CONTRIBUTING.md

* Change "World Wind" to "WorldWind"

* Commented boilerplate code

* Correct comments for boilerplate code

* Fix indentation in Collada Example
2018-05-23 15:00:08 -05:00

84 lines
3.1 KiB
JavaScript

/*
* Copyright 2015-2018 WorldWind Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
requirejs(['./WorldWindShim',
'./LayerManager'],
function (WorldWind,
LayerManager) {
"use strict";
// Tell WorldWindow to log only warnings.
WorldWind.Logger.setLoggingLevel(WorldWind.Logger.LEVEL_WARNING);
// Create the WorldWindow.
var wwd = new WorldWind.WorldWindow("canvasOne");
// Create and add imagery layers to the WorldWindow.
var layers = [
//Imagery layers.
{layer: new WorldWind.BMNGLayer(), enabled: false},
{layer: new WorldWind.BingAerialWithLabelsLayer(null), enabled: true},
// WorldWindow UI layers.
{layer: new WorldWind.CompassLayer(), enabled: true},
{layer: new WorldWind.CoordinatesDisplayLayer(wwd), enabled: true},
{layer: new WorldWind.ViewControlsLayer(wwd), enabled: true}
];
// Create GeoTiff layer
var geoTiffLayer = new WorldWind.RenderableLayer("GeoTiff");
geoTiffLayer.enabled = false;
geoTiffLayer.showSpinner = true;
for (var l = 0; l < layers.length; l++) {
layers[l].layer.enabled = layers[l].enabled;
wwd.addLayer(layers[l].layer);
}
// Add GeoTiff to the WorldWindow's layer list. Disabled until its image is loaded.
wwd.addLayer(geoTiffLayer);
// Create a layer manager for controlling layer visibility.
var layerManager = new LayerManager(wwd);
var resourceUrl = "https://worldwind.arc.nasa.gov/web/examples/data/black_sea_rgb.tif";
// Define a parser completion callback
var parserCallback = function (geoTiffReader, xhrStatus) {
if (!geoTiffReader) {
// Error, provide the status text to the console
console.log(xhrStatus);
return;
}
var surfaceGeoTiff = new WorldWind.SurfaceImage(
geoTiffReader.metadata.bbox,
new WorldWind.ImageSource(geoTiffReader.getImage())
);
geoTiffLayer.addRenderable(surfaceGeoTiff);
geoTiffLayer.enabled = true;
geoTiffLayer.showSpinner = false;
layerManager.synchronizeLayerList();
wwd.redraw();
wwd.goTo(new WorldWind.Position(43.69, 28.54, 55000));
};
// Load the GeoTiff using the Reader's built in XHR retrieval function
WorldWind.GeoTiffReader.retrieveFromUrl(resourceUrl, parserCallback);
});