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?
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With