-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (59 loc) · 2.24 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title>INSEE Map</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Carte carte des données de l'INSEE" />
<meta name="keywords" content="openlayers,ol,insee,map,ol-ext" />
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="img/logo.png" />
<!-- android -->
<meta name="mobile-web-app-capable" content="yes">
<!-- iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="translucent-black">
<link rel="apple-touch-icon" href="img/logo.png" />
<link rel="apple-touch-startup-image" href="img/logo.png" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1" />
<!-- Fontawesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<!-- DIV pour la carte -->
<div id="map"></div>
<!-- Select -->
<div id="select">
Variable : <select></select>
</div>
<!-- Panel -->
<ul id="panel"></ul>
<!-- Wait -->
<div id="loading">
<i class="fa fa-spinner fa-pulse fa-3x"></i>
<p>
CHARGEMENT...
<br/>
<span>Chargement des données</span>
</p>
<div class="bar"><div class="progress"></div></div>
</div>
<!-- About -->
<div class="about" style="display:none">
<h1 class="button">About...</h1>
<p>
This is an example using
<a href="https://openlayers.org/">Openlayers</a> and
<a href="https://github.com/Viglino/ol-ext">ol-ext</a>
with <a href="https://parceljs.org/">ParcelJS</a>.
</p>
<p class="buttons">
<button class='button'>OK</button>
</p>
</div>
<script src="./index.js" type="module"></script>
</body>
</html>