Re: GeoCoding
Make a clickable map with a function like this, and just click on the
location you want the lat/long for:
GEvent.addListener(map, "click", function(overlay, point) {
if (point) {
var mmarker = new GMarker(point, icon1);
map.addOverlay(mmarker);
e GEvent.addListener(mmarker, "click", function() {
mmarker.openInfoWindowHtml("Lat: " + point.y + "<br>Long: " +
point.x);
0 Comments:
Yorum Gönder
<< Home