aboutsummaryrefslogtreecommitdiff
path: root/google_maps_satellite.html
diff options
context:
space:
mode:
Diffstat (limited to 'google_maps_satellite.html')
-rw-r--r--google_maps_satellite.html80
1 files changed, 80 insertions, 0 deletions
diff --git a/google_maps_satellite.html b/google_maps_satellite.html
new file mode 100644
index 0000000..21b3455
--- /dev/null
+++ b/google_maps_satellite.html
@@ -0,0 +1,80 @@
+<html>
+
+<head>
+
+<title></title>
+
+<style type="text/css">
+
+.tile {
+ width:256px;
+ height:256px;
+}
+
+table {
+ border-collapse:collapse;
+}
+
+tr, td {
+ margin:1px;
+ padding:1px;
+}
+
+</style>
+
+<script type="text/javascript" src="prototype.js"/>
+
+<script type="text/javascript">
+
+var base="t";
+
+function zoom(tile) {
+ base = base + tile;
+ $('q').src = 'http://kh0.google.com/kh?n&v&t=' + base + 'q';
+ $('r').src = 'http://kh1.google.com/kh?n&v&t=' + base + 'r';
+ $('t').src = 'http://kh2.google.com/kh?n&v&t=' + base + 't';
+ $('s').src = 'http://kh3.google.com/kh?n&v&t=' + base + 's';
+}
+
+</script>
+
+</head>
+
+<body>
+
+
+
+<table>
+<tr>
+ <td>
+ <a href="javascript:zoom('q');">
+ <img id="q" class="tile" src="http://kh0.google.com/kh?n&amp;v&amp;t=tq" />
+ </a>
+ </td>
+
+ <td>
+ <a href="javascript:zoom('r');">
+ <img id="r" class="tile" src="http://kh0.google.com/kh?n&amp;v&amp;t=tr" />
+ </a>
+ </td>
+</tr>
+
+<tr>
+ <td>
+ <a href="javascript:zoom('t');">
+ <img id="t" class="tile" src="http://kh0.google.com/kh?n&amp;v&amp;t=tt" />
+ </a>
+ </td>
+
+ <td>
+ <a href="javascript:zoom('s');">
+ <img id="s" class="tile" src="http://kh0.google.com/kh?n&amp;v&amp;t=ts" />
+ </a>
+ </td>
+</tr>
+
+</table>
+
+</body>
+
+</html> \ No newline at end of file