-
Notifications
You must be signed in to change notification settings - Fork 38
/
example.html
27 lines (23 loc) · 893 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="leaflet/dist/leaflet.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="leaflet/dist/leaflet.ie.css" /><![endif]-->
<link rel="stylesheet" href="leaflet.measure/leaflet.measure.css" />
<script src="leaflet/build/deps.js"></script>
<script src="leaflet/debug/leaflet-include.js"></script>
<script src="leaflet.measure/leaflet.measure.js"></script>
</head>
<body>
<div id="map" style="width: 800px; height: 600px;"></div>
<script type="text/javascript">
var layerOsm = new L.TileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
subdomains: ["a", "b", "c"],
maxZoom: 18
});
var map = new L.Map('map', {
measureControl: true
}).addLayer(layerOsm).setView(new L.LatLng(40.524724, -3.816153), 6);
</script>
</body>
</html>