NSDK_ManeuverGeneratorSettings

@interface NSDK_ManeuverGeneratorSettings : NSObject

@author PTV AG Karlsruhe

  • Returns the decimal separator for numbers of the generated text.

    Declaration

    Objective-C

    - (char)getSeparator;

    Swift

    func getSeparator() -> Int8

    Return Value

    the decimal separator.

  • Returns the output type of the generated text (TTS or FILE).

    Declaration

    Objective-C

    - (int)getOutputType;

    Swift

    func getOutputType() -> Int32

    Return Value

    the output type.

  • Returns if streetnames should be integrated in the generated text (only used when output type is TTS).

    Declaration

    Objective-C

    - (BOOL)getSpeakStreetNames;

    Swift

    func getSpeakStreetNames() -> Bool

    Return Value

    true, if streetnames will be generated, else false.

  • Returns if signposts should be integrated in the generated text (only used if output type was set to TTS).

    Declaration

    Objective-C

    - (BOOL)getSpeakSignPosts;

    Swift

    func getSpeakSignPosts() -> Bool

    Return Value

    true, if streetnames will be generated, else false.

  • Sets the decimal separator for numbers in the generated text.

    Declaration

    Objective-C

    - (void)setSeparator:(char)separator;

    Swift

    func setSeparator(_ separator: Int8)

    Parameters

    separator

    the decimal separator for numbers.

  • Sets the output type of the generated text ( 0 for TTS or 1 for SAMPLES).

    Declaration

    Objective-C

    - (void)setOutputType:(int)outputType;

    Swift

    func setOutputType(_ outputType: Int32)

    Parameters

    outputType

    the output type.

  • Sets if streetnames should be integrated in the generated text (only used if outputType was set to TTS).

    Declaration

    Objective-C

    - (void)setSpeakStreetNames:(BOOL)speakStreetNames;

    Swift

    func setSpeakStreetNames(_ speakStreetNames: Bool)

    Parameters

    speakStreetNames

    if true, integrate streetnames in the generated text.

  • Sets if signposts should be integrated in the generated text (only used if outputType was set to TTS).

    Declaration

    Objective-C

    - (void)setSpeakSignPosts:(BOOL)speakSignPosts;

    Swift

    func setSpeakSignPosts(_ speakSignPosts: Bool)

    Parameters

    speakSignPosts

    if true, integrate signposts in the generated text.