No, there aren't. I simply copied the example above for the events section on the startpage, event, "loads", to run the following javascript
//This adds a new marker where the user has clicked.
google.maps.event.addListener(map, 'click', function(event) {
marker = new google.maps.Marker({position: event.latLng, map: map});
alert("The user picked latlng " + event.latLng + ".");
});
I'm new at this. Any help is greatly appreciated! ![]()