2017-09-13 91 views

回答

1

您需要實現以下檢查用戶位置註釋的方法。

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