-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.html
More file actions
30 lines (23 loc) · 1.04 KB
/
Copy pathmap.html
File metadata and controls
30 lines (23 loc) · 1.04 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Leaflet Map Demo</title>
<meta charset="utf-8">
<link href="/favicon.ico" rel="icon" type="image/x-icon">
<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/leaflet@1.7.1/dist/leaflet.css"
integrity="sha384-VzLXTJGPSyTLX6d96AxgkKvE/LRb7ECGyTxuwtpjHnVWVZs2gp5RDjeM/tgBnVdM"
crossorigin="anonymous">
<!-- Make sure you put this AFTER Leaflet's CSS -->
<script src="https://unpkg.com/leaflet@1.7.1/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>