-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmap.html
More file actions
42 lines (42 loc) · 1.73 KB
/
map.html
File metadata and controls
42 lines (42 loc) · 1.73 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>TopoJSONify Map</title>
<link type="text/css" rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.css" />
<link type="text/css" rel="stylesheet" href="/stylesheets/leaflet.draw.css" />
<!--[if lte IE 8]>
<link type="text/css" rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.ie.css" />
<link type="text/css" rel="stylesheet" href="/stylesheets/leaflet.draw.ie.css" />
<![endif]-->
<link type="text/css" rel="stylesheet" href="/stylesheets/topojsonify-editor.css"/>
</head>
<body>
<div id="map">
<div id="overlay">
<h1>TopoJSONify</h1>
<p>Edit tool</p>
<ol>
<li>Drop GeoJSON, TopoJSON, and shapefiles onto this page</li>
<li>Make edits</li>
<li>Add any new shapes</li>
<li>
<form action="/" method="POST">
<input id="geojson" type="hidden" name="geojson" val=""/>
<input type="submit" value="Get TopoJSON"/>
</form>
</li>
</ol>
</div>
</div>
<script type="text/javascript" src="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.js"></script>
<script type="text/javascript" src="/scripts/leaflet.draw.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<!--[if lt IE 9]>
<script type="text/javascript" src="/scripts/json3.min.js"></script>
<![endif]-->
<script type="text/javascript" src="/scripts/topojson.v1.min.js"></script>
<script type="text/javascript" src="/scripts/shp.min.js"></script>
<script type="text/javascript" src="/scripts/topojsonify-editor.js"></script>
</body>
</html>