I am new to swift (iOS programming in general) and am trying to figure out how to zoom a map out to fit 2 points on the map.
Currently I have
var zoomRect = MKMapRectNull;
var myLocationPointRect = MKMapRectMake(myLocation.longitude, myLocation.latitude, 0, 0)
var currentDestinationPointRect = MKMapRectMake(currentDestination.longitude, currentDestination.latitude, 0, 0)
zoomRect = myLocationPointRect;
zoomRect = MKMapRectUnion(zoomRect, currentDestinationPointRect);
Which does nothing.
Do I have to apply zoomRect
to the map somehow?