forked from ylureault/navitia-explorer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplaces.html
46 lines (46 loc) · 2.5 KB
/
places.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="./assets/css/global.css" />
<link rel="stylesheet" type="text/css" href="./assets/leaflet_0.7.7/leaflet.css" />
</head>
<body onload="places_onLoad()">
<div id="params_div"></div>
<form name="form">
<div id="menu_div">
<div id="menu_pages"></div>
<div id="menu_env"><input type="hidden" id="ws_name" name="ws_name" value=""/></div>
<div id="menu_cov"><input type="hidden" id="coverage" name="coverage" value=""/></div>
</div>
<div id="content">
<h1>Places : recherche d'objet sur la région</h1>
<input type="text" id="q" name="q"> </input><input type="button" value="GO" onclick="document.forms[0].submit()"> </input>
<div id="q_filter">
<input type="hidden" id="distance_reference" name="distance_reference" value="">
<input type="checkbox" id="administrative_region" name="administrative_region" >Sur les communes
<input type="checkbox" id="stop_area" name="stop_area">Sur les zones d'arrêts
<input type="checkbox" id="poi" name="poi" >Sur les POI
<input type="checkbox" id="address" name="address" >Sur les adresses
<input type="checkbox" id="stop_point" name="stop_point" >Sur les points d'arrêts
</div>
<table style="width:100%; height:400px">
<tr>
<td width="50%" valign="top"><div id="places"></div></td>
<td><div id="map" style="height: 100%"></div></td>
</tr>
</table>
</div>
</form>
<div id="footer" class="footer">
github: <a href="https://github.com/canaltp/navitia-explorer">canaltp/navitia-explorer</a><br/>
<a href="http://www.navitia.io/"><img src='./assets/img/Navitia_logo.png'></a>
<a href="http://www.canaltp.fr/"><img src='./assets/img/canaltp_logo.png' ></a>
</div>
<script type="text/javascript" src="./assets/jquery/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="./assets/leaflet_0.7.7/leaflet.js"></script>
<script type="text/javascript" src="./assets/js/menu.js"></script>
<script type="text/javascript" src="./assets/js/lib.js"></script>
<script type="text/javascript" src="./assets/js/conversion.js"></script>
<script type="text/javascript" src="./assets/js/places.js"></script>
</body>
</html>