问题
I think the title is quite self explanatory. Currently when I add a default annotation for current location:
let currentAnnot = MKPointAnnotation()
currentAnnot.coordinate = loc.coordinate
mainMap.addAnnotation(currentAnnot)
It is giving me a red pin. I want the same blue dot with light blue field which the Apple iPhone Maps app is using by default. Is there a special name for that and how can I add it?
回答1:
It's because you're adding an annotation (pin) rather than the user location.
Enable it by using the following
mapView.showsUserLocation = true
Also check out a tutorial which may help
来源:https://stackoverflow.com/questions/33224044/how-to-get-iphone-maps-app-blue-dot-with-light-blue-field-for-current-location