-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (59 loc) · 4.14 KB
/
index.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
69
<html>
<head>
<meta charset=utf-8 />
<title>Fire Weather</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<!-- Load Leaflet from CDN
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.3/dist/leaflet.css" />-->
<link rel="stylesheet" href="css/mapstyle.css" />
<!-- <script src="https://unpkg.com/leaflet@1.0.3/dist/leaflet-src.js"></script>-->
<script src="js/leaflet-1.0.3/leaflet-src.js"></script>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<!-- Load Esri Leaflet from CDN
<script src="https://unpkg.com/esri-leaflet@2.0.7"></script>-->
<script src="js/esri-leaflet2.0.7.js"></script>
<!-- Include Leaflet.markercluster via rawgit.com
in production you'd be better off hosting these libraries yourself
<link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/Leaflet/Leaflet.markercluster/v1.0.0-beta.2.0/dist/MarkerCluster.Default.css">
<link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/Leaflet/Leaflet.markercluster/v1.0.0-beta.2.0/dist/MarkerCluster.css">
<script src="https://cdn.rawgit.com/Leaflet/Leaflet.markercluster/v1.0.0-beta.2.0/dist/leaflet.markercluster.js"></script>-->
<!-- Load Clustered Feature Layer from CDN
<script src="https://unpkg.com/esri-leaflet-cluster@2.0.0"></script>
Load Heatmap Feature Layer from CDN
<script src="https://unpkg.com/esri-leaflet-heatmap@2.0.0"></script>-->
<script type="text/javascript" src="libs/Leaflet.OpacityControls/lib/opacity/Control.Opacity.js"></script>
<script src="libs/Leaflet.OpacityControls/lib/jquery/jquery-1.9.1.js"></script>
<script src="libs/Leaflet.OpacityControls/lib/jquery/jquery-ui-1.10.3.custom.min.js"></script>
<link rel="stylesheet" href="libs/Leaflet.OpacityControls/lib/jquery/jquery-ui-1.10.3.custom.min.css" />
<script type="text/javascript" src="js/leaflet.ajax.min.js"></script>
<script src="js/L.Control.Locate.min.js" charset="utf-8"></script>
<script src="js/L.Control.Sidebar.js" charset="utf-8"></script>
<script src="js/Control.Loading.js"></script>
<script src="js/leaflet.groupedlayercontrol.js"></script>
<!-- <script src="js/leaflet.active-layers.min.js"></script>-->
<script type="text/javascript" src="js/NonTiledLayer.js"></script>
<script type="text/javascript" src="js/NonTiledLayer.WMS.js"></script>
<script type="text/javascript" src="js/iso8601.min.js"></script>
<!-- seems SLOWER to use this than the nontiledlayer js -->
<script type="text/javascript" src="js/leaflet.wms.js"></script>
<script type="text/javascript" src="js/timedimension/leaflet.timedimension.js"></script>
<script type="text/javascript" src="js/timedimension/leaflet.timedimension.util.js"></script>
<script type="text/javascript" src="js/timedimension/leaflet.timedimension.layer.js"></script>
<script type="text/javascript" src="js/timedimension/leaflet.timedimension.layer.wms.js"></script>
<script type="text/javascript" src="js/timedimension/leaflet.timedimension.player.js"></script>
<script type="text/javascript" src="js/timedimension/leaflet.timedimension.control.js"></script>
<!-- <script type="text/javascript" src="js/esri-leaflet-legend.js"></script>-->
<!-- LOCALLY CACHE TILES FOR 30 MINS: https://github.com/MazeMap/Leaflet.TileLayer.PouchDBCached-->
<script src="js/pouchdb.js"></script>
<script src="js/L.TileLayer.PouchDBCached.js"></script>
</head>
<body>
<!-- contains the side bar information for NOAA Point Forecast. Right click on map to get point forecast-->
<div id="sidebar">
<p>Right click on map to load NOAA weather information.</p>
</div>
<div id="map"></div>
<div id="legend"></div>
<script src="js/fireapp.js"></script>
</body>
</html>