-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
29 lines (22 loc) · 1008 Bytes
/
map.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Leaflet Map Demo</title>
<meta charset="utf-8">
<meta name="description" content="Leaflet js demo using OpenStreetMap (OSM)">
<meta name="keywords" content="Maps, OpenStreetMap, OSM, Leaflet, Javascript, HTML5">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<link rel="stylesheet" href="css/leafletMap.css" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha384-VzLXTJGPSyTLX6d96AxgkKvE/LRb7ECGyTxuwtpjHnVWVZs2gp5RDjeM/tgBnVdM"
crossorigin="anonymous">
<!-- Make sure you put this AFTER Leaflet's CSS -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha384-RFZC58YeKApoNsIbBxf4z6JJXmh+geBSgkCQXFyh+4tiFSJmJBt+2FbjxW7Ar16M"
crossorigin="anonymous"></script>
</head>
<body>
<div id="myMap"></div>
<script src="./js/leaflet-map.js"></script>
</body>
</html>