Have right lick on a map marker show an information panel or perform an action (like show a form for data entry)
Is there a similar example that we can see?
I found this , which I put in -> CUSTOM CODE-- but I have no idea how to make it work
Seems there are a lot of different "solutions", but nothing I'm confident will work
google.maps.event.addListener(marker, 'rightclick', function() {
infowindow.setContent("<div style='width:100px'>rightclick</div>");
infowindow.open(map,marker);
});