Start a Project

Apple Map Integration in Swift

How to integrate Apple Map in Swift

In this blog, we will learn about how to integrate Apple Maps in Swift.

Apple provides MKMapView class for working with map. This class displays maps and provides interface to navigate map content.

Please follow below steps to add Apple map in your project.

Step 1 : Add MapView in your UIViewController. And add outlet of MapView to UIViewController.

Step 2: Add MapKit Framework to your project.

Now, you can run the code and see Map on your screen.

To get the Current Location please continue the steps.

Step 3: Import MapKit in you UIViewController

Step 4 : Now setup MKMapViewDelegate, CLLocationManagerDelegate in your code.

Step 5: Now add a Current location button and make an action of that button and add below code.

Step 6: After that add didUpdateLocations function from CLLocationManagerDelegate and add below code.

Step 7: Must add NSLocationWhenInUseUsageDescription and NSLocationAlwaysUsageDescription in your info.Plist file

Conclusion

So please follow the above step and and if you have any issue or suggestion you can leave your query/suggestion in the comment section I will try to solve that.

Exit mobile version