MKMapCamera
A virtual camera for defining the appearance of the map.
Declaration
class MKMapCameraOverview
A camera object defines a virtual viewpoint above the map surface and affects how MapKit presents the map to the user. You use a camera object to specify the location of the camera on the map, the compass heading indicating the camera’s viewing direction, the pitch of the camera relative to the map perpendicular, and the camera’s altitude above the map. These factors create a map view with a three-dimensional perspective.
After creating an instance of this class, configure it with the desired attributes and assign it to your map view. When you assign a camera to your map view, MapKit centers the map using the value in your camera object’s centerCoordinate property, updating the map’s own region information in the process. The map also takes the camera’s pitch and altitude into account when calculating the visible region, ensuring that the region encompasses the visible content on the map.
Topics
Getting a camera object
init(lookingAtCenter:fromEyeCoordinate:eyeAltitude:)init(lookingAtCenter:fromDistance:pitch:heading:)init(lookingAt:forViewSize:allowPitch:)