-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
34 lines (32 loc) · 869 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no"
/>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>React Leaflet Geoman</title>
<style>
body {
margin: 0;
}
.leaflet-control-container .leaflet-top,
.leaflet-control-container .leaflet-bottom {
transform: translate3d(0px, 0px, 0px);
}
.leaflet-container {
height: 100%;
width: 100%;
margin: 0 auto;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="./example/index.tsx"></script>
<noscript> This app requires JavaScript. </noscript>
</body>
</html>