forked from geoman-io/leaflet-geoman
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
52 lines (42 loc) · 1.28 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
<!DOCTYPE>
<html>
<head>
<title>Leaflet Polygon Management Demo</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet/v1.0.0-beta.2/leaflet.css" />
<link rel="stylesheet" href="demo/demo.css" />
<script src="http://cdn.leafletjs.com/leaflet/v1.0.0-beta.2/leaflet.js"></script>
<script src="dist/leaflet.pm.min.js"></script>
</head>
<body>
<div class="wrapper">
<aside>
<h1>Leaflet.PM</h1>
<h3>Polygon Management</h3>
<ul>
<li id="test-polygon">
Polygon
</li>
<li id="test-layergroup">
LayerGroup
</li>
<li id="test-geojson">
geoJson
</li>
</ul>
<h3>How to:</h3>
<p>
The buttons on top toggle edit-mode for each Leaflet class and will highlight when the edit-event is triggered.
</p>
<p>
Use <strong>right click</strong> to remove a coordinate handler.
</p>
<p>
</p>
</aside>
<div class="content">
<div id="map"></div>
</div>
</div>
<script src="demo/demo.js"></script>
</body>
</html>