Custom map in Swift

Viewed 2106

I am currently developing an iOS application using location. But I want to have a customized map to show user's location, not the default map given by MapKit.

A map like this for example :

Snapchat map

Is it possible to achieve something like this in Swift 4.0 ?

Thanks a lot

3 Answers

You need to use MKTileOverlay - documentation is here...

As it says:

You use tile overlay objects to represent your own tile-based content and to coordinate the display of that content in a map view. Your tiles can supplement the underlying map content or replace it completely.

(my emphasis)

Related