简体   繁体   中英

How to disable callout for user location annotation in Mapbox?

如何在Swift的Mapbox中禁用附加到用户位置注释的“您在这里”标注?

You need to implement the following method which checks for the user location annotation.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM