-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (82 loc) · 3.33 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!doctype html>
<html lang="en">
<head>
<!--
| Version 10.1.1
| Copyright 2012 Esri
|
| Licensed under the Apache License, Version 2.0 (the "License");
| you may not use this file except in compliance with the License.
| You may obtain a copy of the License at
|
| http://www.apache.org/licenses/LICENSE-2.0
|
| Unless required by applicable law or agreed to in writing, software
| distributed under the License is distributed on an "AS IS" BASIS,
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
| See the License for the specific language governing permissions and
| limitations under the License.
-->
<meta charset="utf-8">
<title>Map Activity Center</title>
<meta name="author" content="Lee Bock">
<meta name="description" content="">
<meta name="keywords" content="">
<!--Facebook Open Graph-->
<meta property="og:title" content="" />
<meta property="og:type" content="article" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />
<meta property="og:site_name" content="" />
<meta property="og:description" content=""/>
<meta property="fb:app_id" content="" />
<!--End Facebook-->
<!--Twitter Card Data-->
<meta name="twitter:card" content="">
<meta name="twitter:site" content="">
<!--Twitter Card Data-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link type="image/ico" rel="shortcut icon" href="resources/favicon.ico">
<link type="image/ico" rel="icon" href="resources/favicon.ico">
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto:300,400,bold'/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.6.0/leaflet.css"/>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/src/easy-button.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/noUiSlider/14.0.3/nouislider.min.css">
<link rel="stylesheet" href="main.css">
<style>
.leaflet-popup-content {
text-align: center;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.6.0/leaflet.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/esri-leaflet/2.4.1/esri-leaflet.js"></script>
<script src="https://unpkg.com/[email protected]/src/easy-button.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/noUiSlider/14.0.3/nouislider.min.js"></script>
<script src="Table.js"></script>
<script src="main.js"></script>
</head>
<body>
<h1>Esri Leaflet Map Activity Center</h1>
<section>
<div id="map"></div>
<div id="controls">
<h3>Cities</h3>
<ul></ul>
</div>
<div id="modal">
<div id="inner">
<button id="cancel">X</button>
<label>Rate this app:</label>
<div id="slider"></div>
<div id="octopodes"></div>
<button id="apply" type="submit">Apply</button>
</div>
</div>
<button id="rate"><div class="octopus"></div></button>
</section>
</body>
</html>