In v1 of the standard control, if you needed to get the bounding lat/long of the map you could do this:
var y1 = map.GetLatitude(0);var x1 = map.GetLongitude(0); var y2 = map.GetLatitude(map.height);var x2 = map.GetLongitude(map.width);
There were two problems with this approach. For the South East corner it relies on map.width and height, which no longer exist in the v2 control (map width and height are...
Read More