FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
WebWorldWind/examples/GeoJSON.html at develop · NASAWorldWind/WebWorldWind · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
NASAWorldWind
/
WebWorldWind
Public
Notifications
You must be signed in to change notification settings
Fork
427
Star
997
Code
Issues
247
Pull requests
24
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Security and quality
Insights
Expand file tree
Breadcrumbs
WebWorldWind
/
examples
/
GeoJSON.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
47 lines (47 loc) · 1.99 KB
Breadcrumbs
WebWorldWind
/
examples
/
GeoJSON.html
Copy path
File metadata and controls
47 lines (47 loc) · 1.99 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
<!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
="
GeoJSON
"
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 GeoJSON
</
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
>
</
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