-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
40 lines (38 loc) · 1016 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
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="docs/images/favicon.ico" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<style media="screen">
html,body
{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.leaflet-container
{
background-color: #ffffff;
}
.legend
{
background-color: #FFFFFF;
padding: 10px;
border: 1px solid #DEDEDE;
box-shadow: 1px 1px 2px 0 rgba( 0, 0, 0, 0.1 );
}
</style>
</head>
<body>
<div id="open-streets-dc" style="width: 100%; height: 100%;"></div>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="js/map.min.js"></script>
<script type="text/javascript">
var center = MAP.meta.center.split( /,/ );
L.marker( [ center[1], center[0] ] ).addTo( MAP );
</script>
</body>
</html>