-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
46 lines (38 loc) · 1.71 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-7">
<title>WFS-T Leaflet Plugin</title>
<!-- Leaflet 0.7.3 CSS/JS from CDN -->
<link type="text/css" rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
<!--[if lte IE 8]>
<link type="text/css" rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.ie.css" />
<![endif]-->
<script type="text/javascript" src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<!-- Leaflet Draw 0.2.0 (you'll need to download these -->
<!-- Point these URLs at your own copy of Leaflet.draw, or run:
git submodule init
git submodule update
to initialize the git submodule
-->
<link type="text/css" rel="stylesheet" href="js/Leaflet.draw/dist/leaflet.draw.css" />
<script type="text/javascript" src="js/Leaflet.draw/dist/leaflet.draw.js"></script>
<!--[if lte IE 8]>
<link type="text/css" rel="stylesheet" href="js/Leaflet.draw/dist/leaflet.draw.ie.css" />
<![endif]-->
<!-- This is what you're here for! -->
<!-- leaflet.gml.js, leaflet.wfst.js -->
<script type="text/javascript" src="js/leaflet.gml.js"></script>
<script type="text/javascript" src="js/leaflet.wfst.js"></script>
<!-- css and js for demo -->
<link type="text/css" rel="stylesheet" href="css/map.css" />
<script type="text/javascript" src="js/map.js"></script>
</head>
<body>
<div id="map"></div>
<script type="text/javascript">
// Load the map with the initMap function in map.js
initMap();
</script>
</body>
</html>