forked from ppete2/Leaflet.PolylineMeasure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo2.html
26 lines (25 loc) · 1.38 KB
/
demo2.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Demo 2 of Leaflet.PolylineMeasure</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" />
<link rel="stylesheet" href="Leaflet.PolylineMeasure.css" />
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
<script src="Leaflet.PolylineMeasure.js"></script>
<style>
body {padding: 0; margin: 0;}
html, body, #map {height: 100%;}
</style>
</head>
<body>
<div id="map"></div>
<script>
var layerOsm = new L.TileLayer ('https://{s}.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}', {subdomains:['server','services'], maxZoom:19, noWrap:false, attribution:'<a href="https://www.arcgis.com/">ArcGIS</a>' });
var map = new L.Map ('map').addLayer (layerOsm).setView (new L.LatLng(48, 0), 4);
L.control.scale ({maxWidth:240, metric:false, imperial:true, position: 'bottomleft'}).addTo (map);
L.control.polylineMeasure ({position:'topleft', unit:'landmiles', showBearings:false, clearMeasurementsOnStop: false, showClearControl: true, showUnitControl: false}).addTo (map);
</script>
</body>
</html>