I am trying to make a marker's window clickable so it can lead to a new view
From previous stackoverflow answers, they have said to use
-(UIView*)mapView:(GMSMapView *)mapView markerInfoWindow:(id<GMSMarker>)marker {
}
However, when I use the method, xcode says "Cannot find protocol declaration for GMSMarker" and highlights
(id<GMSMarker>)
How would I solve this problem?