-
Notifications
You must be signed in to change notification settings - Fork 433
/
index.html
49 lines (44 loc) · 1.25 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
<!DOCTYPE >
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Leaflet Geometry Management</title>
<link rel="stylesheet" href="./node_modules/leaflet/dist/leaflet.css" />
<link rel="stylesheet" href="dist/leaflet-geoman.css" />
<script src="./node_modules/leaflet/dist/leaflet-src.js"></script>
<script src="./node_modules/prosthetic-hand/dist/prosthetic-hand.js"></script>
<!--
<script src="../../leaflet-measure-path/leaflet-measure-path.js"></script>
-->
<!--
<script src="https://unpkg.com/[email protected]"></script>
-->
<style>
html,
body {
font-family: Arial, Verdana;
background-color: #eef1ef;
font-size: 16px;
width: 100%;
height: 100%;
margin: 0;
}
.wrapper {
width: 100%;
height: 100%;
}
#map {
height: 500px;
}
</style>
</head>
<body>
<div class="wrapper">
<div id="map"></div>
</div>
<!--
<script src="https://unpkg.com/@geoman-io/leaflet-geoman-free@latest/dist/leaflet-geoman.js"></script>
-->
<script src="dist/leaflet-geoman.js"></script>
</body>
</html>