MMKCarparksLayer

Warning

This feature is available in the Full MapKit SDK version

class MMKCarparksLayer : NSObject

Summary

Instance methods

func isVisible() -> Bool
Indicates whether the layer is displayed on a map

func setVisibleWithOn(_ on: Bool)
Display or hide the layer on a map

func setCarparksStyleWithStyle(_ style: String) -> Bool
Applies JSON style transformations to the carparks layer

func setCarparksStyleWithId(_ id: Int, style: String) -> Bool
Applies JSON style transformations to the carparks layer

func resetCarparksStyles()
Resets all JSON style transformations applied to the carparks layer

Properties

var isValid: Bool { get }
Tells if this object is valid or no

Instance methods

isVisible()

func isVisible() -> Bool

Indicates whether the layer is displayed on a map.


setVisibleWithOn(_:)

func setVisibleWithOn(_ on: Bool)

Display or hide the layer on a map.


setCarparksStyleWithStyle(_:)

func setCarparksStyleWithStyle(_ style: String) -> Bool

Applies JSON style transformations to the carparks layer. Same as setCarparksStyle(0, style). Set to empty string to clear previous styling. Returns true if the style was successfully parsed; false otherwise. If the return value is false, the current carparks style remains unchanged.


setCarparksStyleWithId(_:style:)

func setCarparksStyleWithId(_ id: Int, style: String) -> Bool

Applies JSON style transformations to the carparks layer. Replaces previous styling with the specified ID (if such exists). Stylings are applied in an ascending order. Set to empty string to clear previous styling with the specified ID. Returns true if the style was successfully parsed; false otherwise. If the return value is false, the current carparks style remains unchanged.


resetCarparksStyles()

func resetCarparksStyles()

Resets all JSON style transformations applied to the carparks layer.


Properties

isValid

var isValid: Bool { get }

Tells if this object is valid or no. Any method called on an invalid object will throw an exception. The object becomes invalid only on UI thread, and only when its implementation depends on objects already destroyed by now. Please refer to general docs about the interface for details on its invalidation.