here is the code
GEvent.addListener(marker, "click", function() {
var html = "<label>What:<br /><input id='what' type='text'
value=''></label> <button onclick=saveMarker()>save marker</button> ";
marker.openInfoWindowHtml(html );
if the marker doesnt exist on the position we create new one, but if
exist we show the openInfoHtml()
...
var data = transport.responseText.evalJSO N(true);
for(i=0;i<=data.Placemark.leng th-1;i++){
addressPoint = new
GLatLng(data.Placemark[i].Poin t.coordinates[1],data.Placemar k[i].Point.coordinates[0]);
new_li = document.createElement('li')
im adding markers to the map with map.addOverlay(draggable_marke r);
the problem is... all the markers have the same name
"draggable_marker"
if i use map.removeOverlay(draggable_ma rker) it will delete all
markers! right?
any suggestions? thx in advance.