-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
23 lines (23 loc) · 994 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
<html>
<header>
<link rel="stylesheet" href="https://openlayers.org/en/v4.6.4/css/ol.css" type="text/css">
<link rel="stylesheet" href="map.css" type="text/css">
<script src="https://openlayers.org/en/v4.6.4/build/ol.js"></script>
<script src="map.js"></script>
</header>
<body>
<button id="btn_search">SEARCH</button>
<div id="start">Here is the start lat&lon.</div>
<div id="goal">Here is the goal lat&lon.</div>
<div id="distance">Here is the distance.</div>
<div id="time">Here is the spent time.</div>
<div id="input_data" style="visibility:hidden;"></div>
<div id="map"></div>
<div id="popup" class="ol-popup">
<a href="#" id="popup-closer" class="ol-popup-closer"></a>
<div id="popup-content"></div>
<button id="btn_popup_dep">DEP</button>
<button id="btn_popup_arv">ARV</button>
</div>
</body>
</html>