-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (23 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>GSI Maps</title>
<link rel="icon" type="image/png" href="./favicon/icon-192x192.png">
<link rel="apple-touch-icon" type="image/png" href="./favicon/apple-touch-icon-180x180.png">
<link rel="stylesheet" type="text/css" href="dist/leaflet.css" />
<link rel="stylesheet" type="text/css" href="dist/Control.OSMGeocoder.css" />
<link rel="stylesheet" type="text/css" href="./atlas.css" />
<script type="text/javascript" src="dist/leaflet.js"></script>
<script type="text/javascript" src="dist/leaflet.geocsv.js"></script>
<script type="text/javascript" src="dist/leaflet.geometryutil.js"></script>
<script type="text/javascript" src="dist/Control.OSMGeocoder.js"></script>
<script type="text/javascript" charset="utf-8" src="./atlas.js"></script>
</head>
<body onload="_onLoad()">
<div id="mapContainer">
<div class="buttonLayout"><button id="hereButton" onClick="_hereButton()">Locate</button></div>
</div>
</body>
</html>