forked from mhkeller/cartodb-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (64 loc) · 4.67 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
<!DOCTYPE html>
<html>
<head>
<title>CartoDB template gallery - @mhkeller</title>
<style>
body{
font-family: "HelveticaNeue-Light", "Helvetica Neue Light","Helvetica Neue", Helvetica,sans-serif;
font-weight: 300;
}
h1,h2,h3,h4,h5{
padding:0;
margin:0;
}
h3{
display:inline;
}
a{
color:#10BAE5;
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
h1{
margin-top:20px;
}
</style>
</head>
<body>
<h1><a href="http://www.github.com/mhkeller/cartodb-templates" target="_blank">CartoDB + Leaflet.js map templates</a></h1>
<h1>Basic templates</h1>
<h3>Polygon</h3> ( <a href="basic/polygon-hover.html" target="_blank">full screen</a> | <a href="http://github.com/mhkeller/cartodb-templates/tree/master/basic/polygon-hover.html" target="_blank">code</a> )
<iframe src="basic/polygon-hover.html" width="100%" height="125" scrolling="no" frameborder="0"></iframe>
<h3>Point</h3> ( <a href="basic/point-hover.html" target="_blank">full screen</a> | <a href="http://github.com/mhkeller/cartodb-templates/tree/master/basic/point-hover.html" target="_blank">code</a> )
<iframe src="basic/point-hover.html" width="100%" height="125" scrolling="no" frameborder="0"></iframe>
<h3>Point + Polygon</h3> ( <a href="basic/point-polygon-hover.html" target="_blank">full screen</a> | <a href="http://github.com/mhkeller/cartodb-templates/tree/master/basic/point-polygon-hover.html" target="_blank">code</a> )
<iframe src="basic/point-polygon-hover.html" width="100%" height="125" scrolling="no" frameborder="0"></iframe>
<h1>With hover windows</h1>
<h3>Polygon</h3> ( <a href="hover-windows/polygon-hover-window.html" target="_blank">full screen</a> | <a href="http://github.com/mhkeller/cartodb-templates/tree/master/hover-windows/polygon-hover-window.html" target="_blank">code</a> )
<iframe src="hover-windows/polygon-hover-window.html" width="100%" height="125" scrolling="no" frameborder="0"></iframe>
<h3>Point</h3> ( <a href="hover-windows/point-hover-window.html" target="_blank">full screen</a> | <a href="http://github.com/mhkeller/cartodb-templates/tree/master/hover-windows/point-hover-window.html" target="_blank">code</a> )
<iframe src="hover-windows/point-hover-window.html" width="100%" height="125" scrolling="no" frameborder="0"></iframe>
<h3>Point + Polygon</h3> ( <a href="hover-windows/point-polygon-hover-window.html" target="_blank">full screen</a> | <a href="http://github.com/mhkeller/cartodb-templates/tree/master/hover-windows/point-polygon-hover-window.html" target="_blank">code</a> )
<iframe src="hover-windows/point-polygon-hover-window.html" width="100%" height="125" scrolling="no" frameborder="0"></iframe>
<h1>With templated hover windows</h1>
<h3>Polygon</h3> ( <a href="templated-hover-windows/polygon-hover-window-templated.html" target="_blank">full screen</a> | <a href="http://github.com/mhkeller/cartodb-templates/tree/master/templated-hover-windows/polygon-hover-window-templated.html" target="_blank">code</a> )
<iframe src="templated-hover-windows/polygon-hover-window-templated.html" width="100%" height="125" scrolling="no" frameborder="0"></iframe>
<h3>Point</h3> ( <a href="templated-hover-windows/point-hover-window-templated.html" target="_blank">full screen</a> | <a href="http://github.com/mhkeller/cartodb-templates/tree/master/templated-hover-windows/point-hover-window-templated.html" target="_blank">code</a> )
<iframe src="templated-hover-windows/point-hover-window-templated.html" width="100%" height="125" scrolling="no" frameborder="0"></iframe>
<h3>Point + Polygon</h3> ( <a href="templated-hover-windows/point-polygon-hover-window-templated.html" target="_blank">full screen</a> | <a href="http://github.com/mhkeller/cartodb-templates/tree/master/templated-hover-windows/point-polygon-hover-window-templated.html" target="_blank">code</a> )
<iframe src="templated-hover-windows/point-polygon-hover-window-templated.html" width="100%" height="125" scrolling="no" frameborder="0"></iframe>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-39302491-1']);
_gaq.push(['_setDomainName', 'github.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>