How to add custom floor plan for MapView with zoom and pan

933 Views Asked by At

I am developing an iOS app using swift. I need to show a custom floor plan which users can zoom and pan. Floor plan is an image which I need to set to a mapview instead of showing a world map. When zooming it should load images for particular levels. And also I have to show some pin pointers for some points. I do not want to show the current location.

MKMapView is the best option? Or is there anything else to achieve this?

1

There are 1 best solutions below

0
On

You can use this example for start. It shows how to position floor plan on map. So you'll require in addition to implement delegates methods - func mapView(mapView:MKMapView regionDidChangeAnimated animated:Bool) or func mapView(mapView:MKMapView regionWillChangeAnimated animated:Bool) to determine current zoom level to change your image visible part (as soon as it's a tiled image).