FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
WebWorldWind/examples/Measurements.html at develop · EarthViewer/WebWorldWind · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
EarthViewer
/
WebWorldWind
Public
forked from
NASAWorldWind/WebWorldWind
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
WebWorldWind
/
examples
/
Measurements.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
55 lines (55 loc) · 2.45 KB
Breadcrumbs
WebWorldWind
/
examples
/
Measurements.html
Copy path
File metadata and controls
55 lines (55 loc) · 2.45 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!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
="
Measurements
"
src
="
https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.17/require.min.js
"
>
</
script
>
</
head
>
<
body
>
<
div
class
="
container
"
>
<
div
class
="
jumbotron hidden-xs
"
>
<
h1
style
="
text-align:center
"
>
WorldWind Measurements Example
</
h1
>
</
div
>
<
div
class
="
row
"
>
<
div
class
="
col-sm-3
"
>
<
h4
>
Projection
</
h4
>
<
div
class
="
dropdown
"
id
="
projectionDropdown
"
>
</
div
>
<
br
>
<
h4
>
Layers
</
h4
>
<
div
class
="
list-group
"
id
="
layerList
"
>
</
div
>
<
br
>
<
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
>
<
button
id
="
calc
"
class
="
btn btn-primary
"
>
Calc
</
button
>
<
br
>
<
br
>
<
p
>
Geographic distance:
<
span
id
="
geo-dist
"
>
0
</
span
>
km
</
p
>
<
p
>
Distance:
<
span
id
="
dist
"
>
0
</
span
>
km
</
p
>
<
p
>
Terrain distance:
<
span
id
="
terrain-dist
"
>
0
</
span
>
km
</
p
>
<
p
>
Projected area:
<
span
id
="
projected-area
"
>
0
</
span
>
km2
</
p
>
<
p
>
Terrain area:
<
span
id
="
terrain-area
"
>
0
</
span
>
km2
</
p
>
</
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
>
Back
|
FazBrowse Home
|
New Git URL