diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2013-01-14 20:32:55 +0200 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2013-01-14 20:32:55 +0200 |
| commit | 737a16295474ed8a5fc391fe920f440d2f12ebba (patch) | |
| tree | b5940892a5333b1285e5c84fc6a62e7965c1f4c1 | |
| parent | b4e3a64cc5820f1ae307c8724a94e961b319244b (diff) | |
Initial map page
| -rw-r--r-- | index.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..cabc27f --- /dev/null +++ b/index.html @@ -0,0 +1,19 @@ +<!doctype html> +<html> + <head> + <title>Elections 2013 Map</title> + <link rel="stylesheet" href="http://api.tiles.mapbox.com/mapbox.js/v0.6.7/mapbox.css"> + <script src='http://api.tiles.mapbox.com/mapbox.js/v0.6.7/mapbox.js'></script> + <script> + var map = mapbox.map('map'); + </script> + </head> + <body> + <h1>Elections 2013 Map</h1> + + <div id='map' style='width:500px;height:400px;'></div> + <script> + mapbox.auto('map', 'http://a.tiles.mapbox.com/v3/yuvadm.map-8zhg56t1.jsonp'); + </script> + </body> +</html> |
