Shortlink
A shortlink is a link to a map, designed to be shorter than the normal URL (See Browse#Linking to Maps for user help on various linking options)
Contents |
Example
- http://www.openstreetmap.org/?lat=51.511&lon=0.055&zoom=9&layers=B000FTF - a wide view of the London area.
- http://osm.org/go/0EEQjE== - same view, shorter link.
- http://osm.org/go/0EEQjEEb - zoomed in a lot on a small area of the above image. Note the common beginning.
How the encoding works
The URL is composed of http://osm.org/go/ followed by a binary quadtile address, encoded in ASCII, with chars at the end to indicate relative zoom.
The binary address - for example 0101 - is used as follows. Imagine the lowest zoom tile - this contains the whole globe.
Now - the first bit is 0, this indicates it's the left half of the tile. The second bit being 1 indicates it's the bottom left half in combination with the first bit. The second two bits work the same, further refining the location to the tile that is one sixteenth of the area of the world-tile, on the very bottom-left. (Antarctica, From 45 degrees south down to the pole, and from 90 degrees west to 180 degrees west)
This binary address is then encoded in ASCII, and a few chars are added at the end to indicate relative zoom. The length of the code gives the zoom level rounded to the nearest 3 and the appended code specifies the remainder.
Marker
A marker pin reference for the centre of the map can be included to the shortlink by appending "?m", or if an alternative map layer or any other query has already been included use "&m".
Code for encoding & decoding
You can perform your own shortlink encoding and decoding, and it's worth noting that this is the fundamental advantage of using this URL format over other URL shortening services, where you are dependent on the continuity of that service. With these short links, the location information is truly encoded in the URL, and you can decode it independently of OpenStreetMap's servers.
Source code for encoding and decoding shortlinks can be found in short_link.rb on git. This is the ruby code used on the website. If anyone has other language implementations, please feel free to link them here.
