thedjmixman wrote:This is a good idea...
Would an overlay prevent usage of the map?
No not at all. I currently use the getDisplayRegion() to do this very thing although I like the crosshair idea. Can someone make one for the team to use like they did the "Google" logo?
Below is a function I use when roaming around the map to get the center of the LAT/LNG pair and then update the map with my data for that area.
function GetMapCenterLocation()
{
// Get center of map coordinates
var loc = map.getDisplayRegion();
// Split LAT/LNG from the text data
var geoLoc = loc.split(",");
// Turn off the GPS update or lose the current LAT/LNG
map.showUserLocation("no");
map.clearAnnotations();
// Send LAT/LNG to map update function (geoLoc[1] = LAT, geoLoc[0]=LNG)
locationUpdated(geoLoc[1], geoLoc[0], 0, 0, 0);
}