2017-09-13 3 views

답변

1

사용자 위치 주석을 확인하는 다음과 같은 방법을 구현해야합니다.

func mapView(_ mapView: MGLMapView, annotationCanShowCallout annotation: MGLAnnotation) -> Bool { 
    if annotation is MGLUserLocation { 
     return false 
    } else { 
     return true 
    } 
}