Skip to content

Commit

Permalink
Fix user location display
Browse files Browse the repository at this point in the history
  • Loading branch information
jrichardlai committed Jan 22, 2016
1 parent c49721b commit dfcc0ba
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ios/AirMaps/AIRMapManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,10 @@ - (void)mapView:(AIRMap *)mapView didDeselectAnnotationView:(MKAnnotationView *)

- (MKAnnotationView *)mapView:(__unused AIRMap *)mapView viewForAnnotation:(AIRMapMarker *)marker
{
if (![marker isKindOfClass:[AIRMapMarker class]]) {
return nil;
}

marker.map = mapView;
return [marker getAnnotationView];
}
Expand Down

0 comments on commit dfcc0ba

Please sign in to comment.