-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 1.14 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
<html>
<head>
<title>Mapa de Vídeos</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/MarkerCluster.css"/>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/MarkerCluster.Default.css"/>
<link rel="stylesheet" href="style.css"/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.markercluster.js"></script>
</head>
<body>
<form id="filter">
<label id="countries_label" for="countries"></label>
<select id="countries">
<option value="" id="countries_all"></option>
</select>
<label id="types_label" for="types"></label>
<select id="types">
<option value="" id="types_all"></option>
</select>
<label id="vehicles_label" for="vehicles"></label>
<select id="vehicles">
<option value="" id="vehicles_all"></option>
</select>
</form>
<div id="map"></div>
<script src="script.js"></script>
</body>
</html>