nahh sikerült elindulni, és mostmár kapisgálni a dolgokat, össze is állt egy alap kód:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>gma</title> <script src="http://maps.google.com/maps?file=api&v=2" type="text/javascript"></script> <script>
function initialize() {
if (GBrowserIsCompatible()) { // Display the map, with some controls and set the initial location map = new GMap(document.getElementById("map")); map.addControl(new GLargeMapControl()); map.addControl(new GMapTypeControl()); map.setCenter(new GLatLng(47.23449,19.577637), 7);
GEvent.addListener(map, 'click', function(overlay, point){ if (point){
map.clearOverlays();
var point = new GLatLng(point.y, point.x); var marker = new GMarker(point, {draggable: true}); map.addOverlay(marker); document.getElementById('latitude').value = point.y; document.getElementById('longitude').value = point.x; } } );
} else { alert("Nem vagy gugli kompatibilis !"); } } </script> </head>
<body onload="initialize()" onunload="GUnload()"> <div id="map" style="width: 500px; height: 300px"></div>
<div> y: <input id="latitude" type="text" /> x: <input id="longitude" type="text" />
</div>
</body> </html>
annyi bibi van benne, hogy ha lerakom a pöcköt, és odébb húzom a koordináták nem frissülnek, de ha kattintok egy pontra, és oda kerül a pöcök akkor frissül. 
ebben ha tudnátok picit segíteni megköszönném 
bár ha erre nincs megoldás akkor marad a klikkelős verzió, de az nem annyira szimpi  |