Clicks on map pins stops working after a bit
Here is a page where clicks on map pins works at first but before long the clicks stop working. Meanwhile, clicks in the list on the left continue to select items on the map. http://run.plnkr.co/plunks/NFEyH8YDMigAr97vnFDp/ My sample uses angular-1.2.0-rc1 but I get the bug with any version of angular.
I have the same problem. The UI-event "map-click" stops working after zooming the map.
I have the same problem.
Problem appears when markers are reloaded. Problem solved changing $scope.markers = $scope.createMarkers(); to if ($scope.markers === undefined) $scope.markers = $scope.createMarkers(); in onMapIdle method.
But I am still unable to reload markers after time period...
In my case your solution not solve the problem. Click event fires on few markers only..