-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleafindex.html
More file actions
29 lines (23 loc) · 945 Bytes
/
leafindex.html
File metadata and controls
29 lines (23 loc) · 945 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Simple Leaflet Map</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
</head>
<body>
<h1>Example for Shared Path</h1>
<p>Leaflet with Turf for grid test text.
<div id="map" style="width: 600px; height: 400px"></div>
<script src='https://unpkg.com/@turf/turf/turf.min.js'></script>
<script>
var bbox = turf.bbox(features);
</script>
<script type='text/javascript' src='leaf2.js'></script>
</body>
</html>