HI, I am populating a map with Markers from database location info. I assign the db _id to the "id key" property of the marker. I also ng-repeat cards at the same time as creating the markers(same db call) so that the $index value of the card and it's corresponding map marker are the same. I would like to click on the card and have the map center to the corresponding marker and open it's info-window. How can I target a specific map marker after an ng-click event? Do I create a new function for the click event and use the $scope.mapControl.getGMarkers() somehow? And then Trigger a click on that marker? Thank you for any guidance on this topic.