-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (45 loc) · 1.55 KB
/
index.html
File metadata and controls
46 lines (45 loc) · 1.55 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<html>
<head>
<title>geoinfHutFinder</title>
<meta charset="utf-8">
<link rel="stylesheet" href="https://openlayers.org/en/v4.6.4/css/ol.css" type="text/css">
<link rel="stylesheet" type="text/css" href="css/css.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://openlayers.org/en/v4.6.4/build/ol-debug.js"></script>
<script src='https://unpkg.com/mapbox@1.0.0-beta9/dist/mapbox-sdk.min.js'></script>
<script src="js/modernizr.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</head>
<body>
<header>
<img src="img/titre.png" alt="Hut finder logo" title="Hut finder logo" />
</header>
<div class="icon"></div>
<section class="content">
<aside>
<h2>HutFinder</h2>
<div class="RechercheCabanes">
<input type="text" name="nom" id="nomCabane" placeholder="Entrez le lieu recherché"/>
<button class="searchBtn">Rechercher</button>
</div>
<h3 class="searchResHeading">Résultats de la recherche</h3>
<div class="results">
<div class="resTemplate result"><a class="place" href="#"></a></div>
</div>
<h3 class="searchResHutHeading">Cabanes trouvées</h3>
<div class="hutResults">
<div class="result notice">
</div>
<div class="resHutTemplate result">
<a class="place"href="#"></a>
</div>
</div>
</aside>
<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>
</div>
</section>
</body>
</html>