|
|
|
|
|
|
Click the tiles to zoom in for one level.
Clike the “back” button to go back.
The URL to extract Google’s satellite image tiles has a very simple encoding. It is simply "http://kh0.google.com/kh?&v=14?t=t" where the argument followed by t= is a string composed with letters “q”,”r”,”t” and “s”. These letters indicate the quarter of the image tile from the last image. For example, the first quarter (north-east) of the root image uses “t=tr”. The second quarter uses “t=tq”, the third quarter uses “t=tt” and the forth quarter uses “t=ts”. To get the next zoom level, you can just append either “r”,”q”,”t” and “s” in the argument. The longer the string, the higher the zoom level. As an example, the URL for the tile that shows Mt. Rainer is “http://kh0.google.com/kh?&v=14&t=tqtrtsqtrqrs/.” It would be straight forward to write a program to get the tiles you need by specifying longitude and latitude. This would be handy to composed satellite image for a region you like and print it out.