-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev.html
68 lines (68 loc) · 3.55 KB
/
dev.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
<html class="svg" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="google" content="notranslate" />
<meta http-equiv="Content-Language" content="en_US" />
<link rel="dns-prefetch" href="//wfp.org">
<link rel="dns-prefetch" href="//state.gov">
<link rel="dns-prefetch" href="//geonode.wfp.org">
<link rel="dns-prefetch" href="//geonode.state.gov">
<link rel="dns-prefetch" href="//mapbox.com">
<link rel="dns-prefetch" href="//api.mapbox.com">
<link rel="dns-prefetch" href="//openstreetmap.org">
<link rel="dns-prefetch" href="//openstreetmap.fr">
<title>GeoDash Viewer</title>
<!-- Fonts / External -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic' rel='stylesheet' type='text/css'>
<!-- CSS / External-->
<!--<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">-->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css"
integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<!-- OpenLayers 3 CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ol3/3.20.1/ol.css" type="text/css" media="all" />
<style>.ol-control button { width: 2em; height: 2em; }</style>
<!-- Font Awesome CSS -->
<link href="lib/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<!-- CSS / Internal -->
<!-- Development -->
<link href='build/css/geodashviewer.css' rel='stylesheet' />
<!-- Production -->
<!-- <link href='https://d2xfobv47glk4v.cloudfront.net/geodash-viewer/1490139017416/geodashviewer.css' rel='stylesheet' /> -->
<style type="text/css">[ng\:cloak],[ng-cloak],[data-ng-cloak],[x-ng-cloak],.ng-cloak,.x-ng-cloak,.ng-hide:not(.ng-hide-animate){display:none !important;}</style>
<!-- JavaScript / Polyfill -->
<!-- Development -->
<script src="build/js/polyfill.min.js"></script>
<!-- Production -->
<!-- <script src="https://d2xfobv47glk4v.cloudfront.net/geodash-viewer/1490139017416/polyfill.min.js"></script> -->
<!-- JavaScript / Monolith -->
<!-- Development -->
<script src="build/js/geodashviewer.full.js"></script>
<!-- Production -->
<!-- Can't used minified version, b/c it strips out something critical, but don't know what yet -->
<!-- <script src="https://d2xfobv47glk4v.cloudfront.net/geodash-viewer/1490139017416/geodashviewer.full.js"></script> -->
<script type="text/javascript" language="Javascript">
geodash.mapping_library = "ol3";
geodash.api.addHandler("GeoDashControllerMain", "geodash:maploaded", function($scope, $interpolate, $http, $q, event, args){
// You can catch the geodash:maploaded event after the OL3 map is properly initialized
// For example, fly to the current location using geolocation, which will only work on https or localhost
// geodash.api.intend("flyToCurrentLocation", {"duration": 3000}, geodash.util.getScope("geodash-main"))
});
$(function(){geodash.init.all();});
</script>
</head>
<body>
<div
id="geodash-main"
data-geodash-controllers="GeoDashControllerMain"
data-geodash-dashboard-name="main"
class="container-fluid geodash-main geodash-controller geodash-dashboard"
geodash-main>
</div>
</body>
</html>