VMMSWayfindingOptions

@interface VMMSWayfindingOptions : NSObject

Model representing the various options to use when creating waypath.

Since

1.0
  • Designated initializer. Currently, the only options are to enable/disable stairs and elevators. If the default init method is used, elevators will be enabled and stairs will be disabled.

    Declaration

    Swift

    - (instancetype)initWithElevatorsEnabled:(BOOL)elevatorsEnabled
                            andStairsEnabled:(BOOL)stairsEnabled;

    Parameters

    elevatorsEnabled

    BOOL to enable elevators.

    stairsEnabled

    BOOL to enable stairs.

    Return Value

    An instance of VMMSWayfindingOptions.

  • BOOL to enabled elevators.

    Declaration

    Swift

    @property (assign, readwrite, atomic) BOOL elevatorsEnabled;
  • BOOL to enable stairs.

    Declaration

    Swift

    @property (assign, readwrite, atomic) BOOL stairsEnabled;