CameraUpdate
public struct CameraUpdate : Equatable
Camera update type.
-
Creates an instance of
CameraUpdate.Declaration
Swift
public init( position: CLLocationCoordinate2D? = nil, zoom: Double? = nil, tilt: Double? = nil, rotation: Double? = nil, positionMarkerVerticalOffset: Double? = nil, scale: Double? = nil, fieldOfView: Double? = nil )Parameters
positionPosition of the camera in CLLocationCoordinate2D.
zoomDisplays the map from a closer position. Allowed zoom level range: [0, 22].
tiltCamera tilt. A value of 0 indicates the camera is looking straight down. 90 means it is looking straight ahead towards the horizon.
rotationCamera heading, measured starting at due north and continuing clockwise around the compass. Thus, north is 0 degrees, east is 90 degrees, south is 180 degrees, and so on. Allowed range: [0, 360].
positionMarkerVerticalOffsetSets the camera position marker vertical offset from the centre of the screen. The offset controls the placement of the position marker in the space between the center of the safe area and its bottom. Offset of 0.0 means the position marker should remain in the center of the safe area. Offset of 1.0 means the position marker should be aligned with the bottom of the safe area. The value may be ignored when the camera’s scale is such that offsetting the map causes the world to rotate oddly. Valid range for the offset is [0.0, 1.0].
scaleRatio of a distance on the screen to the actual distance in the world. Cannot be less than 1.0.
fieldOfViewCamera field of view in degrees. Allowed range [1.0, 150.0].
-
Creates an instance with some optional parameters.
Declaration
Swift
public init( zoomBy: Double? = nil, zoomIn: Bool = false, zoomOut: Bool = false, tiltBy: Double? = nil, rotateBy: Double? = nil, moveBy: CGPoint? = nil, fieldOfViewChangeBy: Double? = nil )Parameters
zoomByAdds an update that adjusts the scale by the specified value, i.e. a scale of 1:100 with a zoomBy of 2 becomes 1:200, a scale of 1:200 with a zoomBy of 0.25 becomes 1:50. If the resulting scale would be less than 1 after the update is applied, the scale is set to 1.
zoomInIf true, adds an update that reduces the scale by one step.
zoomOutIf true, adds an update that increases the scale by one step.
tiltByAdds an update that adjusts the tilt by the specified angle. The tilt is measured from the nadir, i.e. value of 0 indicates the camera looking straight down, and 90 - straight ahead towards the horizon. The value may be clamped to a maximum value determined based on the camera’s scale, in order to assure map readability.
rotateByAdds an update that adjusts the heading by the specified angle in degree. Heading is measured starting at due north and continues clockwise around the compass. Thus, north is 0 degrees, east is 90 degrees, south is 180 degrees, and so on.
moveByAdds an update that adjusts current camera position specified by move vector
moveByfieldOfViewChangeByAdds an update that adjusts the field of view by the specified angle.
-
Creates an instance with FitToCoordinatesOptions.
Declaration
Swift
public init(fitToCoordinatesOptions: FitToCoordinatesOptions)Parameters
fitToCoordinatesOptionsFitToCoordinatesOptions instance.
-
Returns a CameraUpdate instance that transforms the camera to ensure that all coordinates are visible and padded.
Declaration
Swift
public init(fitToCoordinates coordinates: [CLLocationCoordinate2D], padding: UInt = 0)Parameters
coordinatesList of coordinates to be taken into account when setting the camera position.
paddingPadding between the coordinates and camera borders.
-
Position of the camera in CLLocationCoordinate2D.
Declaration
Swift
@EquatableWrapper public var position: CLLocationCoordinate2D? { get set } -
Displays the map from a closer position. Allowed zoom level range: [0, 22]. Zoom level categories are as following:
- 0: The camera is fully zoomed out the whole globe is visible.
- 5: Country-level.
- 10: City-level.
- 15: Neighborhood-level.
- 20: Street-level.
- 22: Maximum zoom in.
Declaration
Swift
public var zoom: Double? -
A value of 0 indicates the camera is looking straight down. 90 means it is looking straight ahead towards the horizon.
Declaration
Swift
public var tilt: Double? -
Camera heading, measured starting at due north and continuing clockwise around the compass. Allowed range: [0, 360].
Declaration
Swift
public var rotation: Double? -
Sets the camera position marker vertical offset from the centre of the screen.
Declaration
Swift
public var positionMarkerVerticalOffset: Double? -
Sets the camera field of view in degrees. Valid range is [1.0, 150.0]
Declaration
Swift
public var fieldOfView: Double?
CameraUpdate Structure Reference