Skip to content

Instantly share code, notes, and snippets.

@max-mapper
Created August 22, 2010 00:22
Show Gist options
  • Save max-mapper/543075 to your computer and use it in GitHub Desktop.
Save max-mapper/543075 to your computer and use it in GitHub Desktop.
function bbox(map) {
var sw = map.coordinateLocation(map.pointCoordinate(map.locationCoordinate(map.center()), {x:0, y:0}))
var ne = map.coordinateLocation(map.pointCoordinate(map.locationCoordinate(map.center()), {x:map.size().x, y:map.size().y}))
return sw.lon + ',' + sw.lat + ',' + ne.lon + ',' + ne.lat;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment