-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathleaflet-plugins-example.html
33 lines (25 loc) · 1.1 KB
/
leaflet-plugins-example.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
<html>
<head>
<title>Using Leaflet Plugins</title>
<!-- Load leaflet javascript and CSS files -->
<link rel="stylesheet" href="/static/lib/css/leaflet.css"/>
<script src="/static/lib/js/leaflet-src.js"></script>
<!-- Load jquery from google cdn (should be cached by most browsers) -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Load leaflet marker cluster plugin files -->
<link rel="stylesheet" href="/static/lib/css/MarkerCluster.Default.css"/>
<link rel="stylesheet" href="/static/lib/css/MarkerCluster.css"/>
<script src="/static/lib/js/leaflet.markercluster.js"></script>
<!-- Load leaflet omnivore plugin.js -->
<script src="//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.1.2/leaflet-omnivore.min.js"></script>
</head>
<body>
<!-- Load CSS for page -->
<link rel="stylesheet" href="/static/css/main.css"/>
<div id="basic-map">Leaflet</div>
</body>
<footer>
<!-- Load javascript to display map -->
<script src="/static/js/leaflet-plugins-example.js"></script>
</footer>
</html>