leafletmap.html
1.34 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Leaflet Map</title>
<meta charset="utf-8" />
<!-- only needed for mobile browsers: disable unwanted scaling and use full width -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- force the map to use the full available space -->
<style>
html, body, #map {
height: 100%;
width: 100%;
padding: 0px;
margin: 0px;
}
</style>
<!-- for remote access of the Leaflet library
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.3/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@1.0.3/dist/leaflet.js"></script> -->
<link rel="stylesheet" href="leaflet/leaflet.css" />
<link rel="stylesheet" href="Leaflet.markercluster-1.4.1/dist/MarkerCluster.css" />
<link rel="stylesheet" href="Leaflet.markercluster-1.4.1/dist/MarkerCluster.Default.css" />
<script src="leaflet/leaflet.js"></script>
<script src="leaflet/leaflet.rotatedMarker.js"></script>
<script src="Leaflet.markercluster-1.4.1/dist/leaflet.markercluster-src.js"></script>
<script src="Leaflet.heat/dist/leaflet-heat.js"></script>
<script src="leaflet-color-markers/leaflet-color-markers.js"></script>
</head>
<body>
<div id="map"/>
</body>
</html>