Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If one click on a marker, information about the spot (e.g the coordinates) is shown. I want to disable this, so the markers aren't clickable. How can I do that?

I've looked around everywhere but haven't been able to find information about how that can be done.

share|improve this question
1  
Do you actually mean markers, don't you mean POIs? because for markers it is a trivial question (wonder why you asked..), while for POIs, it is much more complicated and interesting. – Tomas Feb 3 at 10:58
see edited answer – Rachel Gallen Feb 3 at 11:10

1 Answer

up vote 4 down vote accepted

Apparently there are two possible ways to achieve this

  1. by using the property setClickable(flag:boolean); see http://code.google.com/apis/maps/documentation/v3/reference.html#Marker

  2. Remove the listener off the marker. It will look something similar to this google.maps.event.addListener(marker, "click", function(etc)

Reference

Also, if you work on the map in Collaborate mode, at the upper right of the left frame (with the locations listed), there's an Edit button. Click it.

Then go to the location you want to remove in the list on the left and click it to open it's information window on the map (expanding from the droplet-shaped marker). Inside that information box is a "delete" link, and that removes the location.

share|improve this answer
Thanks a lot. Worked like a charm! – holyredbeard Feb 3 at 12:27
always happy to help! :) – Rachel Gallen Feb 3 at 12:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.