WebWorldWind/examples/SimplestExample.html
Miguel Del Castillo 054ff831da Refactored Standalone example as the Offline app (#767)
* Refactored Standalone example as the Offline app

* Updated Standalone data bundle URL

* Updated conf file reflecting new name and location of Offline app

* Delete duplicate Offline configuration file
2019-10-16 13:34:25 -07:00

37 lines
1.4 KiB
HTML

<!DOCTYPE html>
<!-- This is a very simple example of using Web WorldWind. -->
<html>
<head lang="en">
<meta charset="utf-8">
<title>WorldWind Simplest Example</title>
<!-- Include the Web WorldWind library. -->
<script src="../build/dist/worldwind.min.js" type="text/javascript"></script>
</head>
<body>
<div style="position: absolute; top: 50px; left: 50px;">
<!-- Create a canvas for Web WorldWind. -->
<canvas id="canvasOne" width="1024" height="768">
Your browser does not support HTML5 Canvas.
</canvas>
</div>
<script>
// Register an event listener to be called when the page is loaded.
window.addEventListener("load", eventWindowLoaded, false);
// Define the event listener to initialize Web WorldWind.
function eventWindowLoaded() {
// Create a WorldWindow for the canvas.
var wwd = new WorldWind.WorldWindow("canvasOne");
// Add some image layers to the WorldWindow's globe.
wwd.addLayer(new WorldWind.BMNGOneImageLayer());
wwd.addLayer(new WorldWind.BingAerialWithLabelsLayer());
// Add a compass, a coordinates display and some view controls to the WorldWindow.
wwd.addLayer(new WorldWind.CompassLayer());
wwd.addLayer(new WorldWind.CoordinatesDisplayLayer(wwd));
wwd.addLayer(new WorldWind.ViewControlsLayer(wwd));
}
</script>
</body>
</html>