disable clickable landmark on google map

Google has exposed an option for this. See clickableIcons of google.maps.MapOptions in the docs.

Example initialization code:

map = new google.maps.Map(document.getElementById('map'), {
    clickableIcons: false
});

Leave a Comment