I have a mapView
in which I want to show user's current location. However, I don't want to centre the mapView
to that location (it is centred to other location). So, for that reason, I don't get coordinates for the user's location to set the region. I just call showsUserLocation
and set it to true. Everything works fine, except the fact that this makes my mapView
show user's current location just as a pin. I would like it to be in a form of a default blue dot.
Related to the problem above, I have two questions: 1) Why does it show user's current location as a pin? 2) How can I make it show user's current location as a blue dot?
If you know the answers to these questions (or only to one of them) I would appreciate your help.
MKMapView
) trying to figure out how to do that. So, in that tutorials the dot is appearing without callingmapView(_:viewFor:)
method. That's why I am curious about this. – Zuzana