mirror of
https://github.com/NASAWorldWind/WebWorldWind.git
synced 2025-12-08 19:46:18 +00:00
57 lines
2.3 KiB
HTML
57 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!--NOTE: Most Web WorldWind examples use jquery, Bootstrap and requirejs but those technologies are NOT-->
|
|
<!--required by Web WorldWind. See SimplestExample.html for an example of using Web WorldWind without them.-->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js" type="text/javascript"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
|
|
<script data-main="KML"
|
|
src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.17/require.min.js"></script>
|
|
<style>
|
|
#treeControls input {
|
|
margin-right: 1em;
|
|
}
|
|
|
|
#treeControls a:hover {
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="jumbotron hidden-xs">
|
|
<h1 style="text-align:center">WorldWind KML</h1>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-sm-3">
|
|
<h4>Destination</h4>
|
|
<div class="input-group" id="searchBox">
|
|
<input type="text" class="form-control" placeholder="GoTo" id="searchText"/>
|
|
<span class="input-group-btn">
|
|
<button id="searchButton" class="btn btn-primary" type="button">
|
|
<span class="glyphicon glyphicon-search"></span>
|
|
</button>
|
|
</span>
|
|
</div>
|
|
<br>
|
|
<h4>KML Elements</h4>
|
|
<p>
|
|
The list below shows all elements parsed from the KML file.
|
|
<br />
|
|
The checkboxes control visibility. The links move the camera to the elements that have a defined camera destination.
|
|
</p>
|
|
<div id="treeControls" style="height: 600px; overflow-y: auto; overflow-x: hidden;"></div>
|
|
</div>
|
|
<div class="col-sm-9" id="globe">
|
|
<canvas id="canvasOne" width="1000" height="1000"
|
|
style="width: 100%; height: auto; background-color: black;">
|
|
Your browser does not support HTML5 Canvas.
|
|
</canvas>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |