-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 1.02 KB
/
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
24
25
26
27
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<html>
<head><title>Toll Calculation</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css" />
<link rel="stylesheet" href="./style.css" />
<link rel="icon" href="../../favicon.ico" />
<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js">
</script>
<script src="https://developer-applications.myptv.com/Tutorials/common/jquery.min.js">
</script>
<script src="https://developer-applications.myptv.com/Tutorials/common/convertTime.js">
</script>
<script src="https://developer-applications.myptv.com/Tutorials/common/convertDistance.js">
</script>
<script src="./headerTileLayer.js">
</script>
<script src="./tollRouting.js">
</script>
<style>
#map {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
</body>
</html>