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?
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)
orfunc 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).