I have a php page with google maps. I want to be able to change the marker to an image so that it appears to drag the marker from the link unto the map so that when i click on it, it creates a new marker on the map with info ti fill.
Mike....i have seen this on your site which loads it on page load. I have on my php page echo "<A class=\"whitetext\" title=\"Click and Drag Mark on the map to submit.\" onclick=\"parent.startcursor();\" href=\"#\">Submit A Place</A> <img src=\"http://www.belizemapia.com/images/marker.gif \"> "; How would i call this from my startcursor function?? I want it to appear as if i when i click on the link it attaches the image(marker.gif) to my mouse pointer. I need to convert that gif image to a cursor image? GMarker.prototype.hide = function() {} if (GBrowserIsCompatible()) { var map = new GMap(document.getElementById("map"), {draggableCursor:'url(fcur.cur),default'}); map.setCenter(new GLatLng(52,-2),10); } // display a warning if the browser was not compatible else { alert("Sorry, the Google Maps API is not compatible with this browser"); } --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
