-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (22 loc) · 978 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Leaflet Route Display</title>
<!-- Leaflet CSS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<!-- Leaflet Routing Machine CSS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet-routing-machine.css" />
<!-- Leaflet JavaScript -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<!-- Leaflet Routing Machine JavaScript -->
<script src="https://unpkg.com/[email protected]/dist/leaflet-routing-machine.js"></script>
<!-- Leaflet Control Geocoder JavaScript -->
<script src="https://unpkg.com/[email protected]/dist/Control.Geocoder.js"></script>
</head>
<body>
<div id="map" style="height: 500px;"></div>
<script src="app.js"></script>
</body>
</html>