Мне нужно получить координати с карты google maps в реальном времени так как ето сделано здесь
http://www.3planeta.com/googlemaps/k...ogle-maps.html и конвентировать их в адрес
пока что сделал чтобы координаты выводились при щелчке мыши по карте,
GEvent.addListener(map, "click", function(overlay,latlng) {
if (overlay) {
// ignore if we click on the info window
return;
}
var tileCoordinate = new GPoint();
var tilePoint = new GPoint();
var currentProjection = G_NORMAL_MAP.getProjection();
tilePoint = currentProjection.fromLatLngToPixel(latlng, map.getZoom());
tileCoordinate.x = Math.floor(tilePoint.x / 256);
tileCoordinate.y = Math.floor(tilePoint.y / 256);
var myHtml = "Latitude: " + latlng.lat() + "<br/>Longitude: " + latlng.lng() +
"<br/>The Tile Coordinate is:<br/> x: " + tileCoordinate.x +
"<br/> y: " + tileCoordinate.y + "<br/> at zoom level " + map.getZoom();
// map.openInfoWindow(latlng, myHtml);
var txt1 = document.getElementById('txt1');
var txt2 = document.getElementById('txt2');
txt1.value = latlng.lat();
txt2.value = latlng.lng();
а вот как прослушывать мыш постоянно незнаю...
Подскажыте плз.