-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (76 loc) · 1.68 KB
/
index.html
File metadata and controls
79 lines (76 loc) · 1.68 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
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
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>geo-explore</title>
</head>
<body>
<h1>geo-explore</h1>
<h3>SVG</h3>
<ul>
<li>
<a href="basemap-svg/">Basemap SVG</a>
</li>
<li>
<a href="basemap-svg-with-projection/">Basemap SVG with d3 map projection</a>
</li>
<li>
<a href="basemap-svg-with-zoom/">Basemap SVG with Zoom</a>
</li>
<li>
<a href="choropleth-svg/">Choropleth SVG</a>
</li>
<li>
<a href="points-svg/">Many Points SVG</a>
</li>
<li>
<a href="hexbin-svg/">Hexbin SVG</a>
</li>
<li>
<a href="rectbin-svg/">Rectbin SVG</a>
</li>
<li>
<a href="contour-svg/">Contour SVG</a>
</li>
</ul>
<h3>Canvas</h3>
<ul>
<li>
<a href="basemap-canvas/">Basemap Canvas</a>
</li>
<li>
<a href="basemap-canvas-with-zoom/">Basemap Canvas with Zoom</a>
</li>
<li>
<a href="points-canvas/">Many Points Canvas</a>
</li>
</ul>
<h3>Leaflet</h3>
<ul>
<li>
<a href="leaflet-basic/">Basic Leaflet</a>
</li>
<li>
<a href="leaflet-mapbox-tiles/">MapBox Tiles Leaflet</a>
</li>
<li>
<a href="leaflet-stamen-tiles/">Stamen Tiles Leaflet</a>
</li>
<li>
<a href="leaflet-choropleth/">Choropleth Leaflet</a>
</li>
<li>
<a href="leaflet-stamen-choropleth/">Stamen Tiles Choropleth Leaflet with labels on top</a>
</li>
<li>
<a href="leaflet-points/">Many Points Leaflet</a>
</li>
<li>
<a href="leaflet-clusters/">Clusters Leaflet</a>
</li>
<li>
<a href="leaflet-canvas-points/">Many Points on Canvas Layer Leaflet</a>
</li>
</ul>
</body>
</html>