-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeomap.html
More file actions
36 lines (31 loc) · 1.25 KB
/
geomap.html
File metadata and controls
36 lines (31 loc) · 1.25 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GeoLocation Example</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"></script>
<script src="https://unpkg.com/esri-leaflet@2.5.0/dist/esri-leaflet.js"></script>
<link rel="stylesheet" href="https://unpkg.com/esri-leaflet-geocoder@2.3.3/dist/esri-leaflet-geocoder.css">
<script src="https://unpkg.com/esri-leaflet-geocoder@2.3.3/dist/esri-leaflet-geocoder.js"></script>
<link rel="stylesheet" href="css/jquery.mobile-1.4.5.min.css" />
<script src="js/jquery.min.js"></script>
<script src="js/jquery.mobile-1.4.5.min.js"></script>
<script src="js/script.js"></script>
<script src="cordova.js"></script>
</head>
<body>
<div data-role="page" id="mylocation" data-theme="a">
<div data-role="header">
<h1>Open Street Map</h1>
</div>
<div data-role="main" class="ui-content">
<div id="map" style="height:75vh"></div>
</div>
<div data-role="footer">
<p>geomap</p>
</div>
</div>
</body>
</html>