forked from perrygeo/leaflet-simple-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (39 loc) · 2.09 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
<!DOCTYPE html>
<html>
<head>
<title>Leaflet GeoCsv Filter</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="http-equiv" content="Content-type: text/html; charset=UTF-8"/>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.4.5/leaflet.css" />
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet">
<!--[if lte IE 8]><link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.4.5/leaflet.ie.css" /><![endif]-->
<link rel="stylesheet" href="css/MarkerCluster.css" />
<link rel="stylesheet" href="css/MarkerCluster.Default.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="../dist/MarkerCluster.Default.ie.css" /><![endif]-->
<link rel="stylesheet" href="css/leaflet.label.css" />
<link rel="stylesheet" href="css/screen.css" />
</head>
<body>
<div id="map"></div>
<div id="filter-container">
<form class="form-search" class="noSelect" onSubmit="addCsvMarkers(); return false;">
<a href="#" id="clear" class="leaflet-popup-close-button">×</a>
<div class="input-append">
<input type="text" id="filter-string" class="input-medium search-query search-box" autocomplete="off">
<button type="submit" class="btn search-box"><i class="icon-search"></i></button>
<!-- <span class="add-on">
</span> -->
</div>
</form>
<div id="search-results" class="leaflet-control-attribution leaflet-control pull-right"></div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" ></script>
<script src="http://cdn.leafletjs.com/leaflet-0.4.5/leaflet.js"></script>
<script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<script src="js/leaflet.markercluster.js"></script>
<script src="js/leaflet.geocsv.js"></script>
<script src="js/leaflet.label.js"></script>
<script src="config.js"></script>
<script src="js/app.js"></script>
</body>
</html>