MMKNavigationRouteStyle

@interface MMKNavigationRouteStyle : NSObject

Undocumented

Summary

Instance methods

- (void)setShowRouteWithShowRoute:(BOOL)showRoute;
Show or hide route

- (void)setShowJamsWithShowJams:(BOOL)showJams;
Enable or disable traffic jams along route

- (void)setShowBalloonsWithShowBalloons:(BOOL)showBalloons;
Show balloons related to the route

- (void)setShowRoadEventsWithShowRoadEvents:(BOOL)showRoadEvents;
Enable or disable road events on the route

- (void)setShowTrafficLightsWithShowTrafficLights:(BOOL)showTrafficLights;
Show traffic lights along the route

- (void)setShowCheckpointsWithShowCheckpoints:(BOOL)showCheckpoints;
Show checkpoints along the route

- (void)setShowRailwayCrossingsWithShowRailwayCrossings:
    (BOOL)showRailwayCrossings;

Show railway crossings along the route

- (void)setShowSpeedBumpsWithShowSpeedBumps:(BOOL)showSpeedBumps;
Show railway crossings along the route

- (void)setShowRoadsInPoorConditionWithShowRoadsInPoorCondition:
    (BOOL)showRoadsInPoorCondition;

Show roads in poor condition along the route

- (void)setShowManoeuvresWithShowManoeuvres:(BOOL)showManoeuvres;
Show manoeuvre arrows along the route

- (void)setShowTollRoadsWithShowTollRoads:(BOOL)showTollRoads;
Show toll roads along the route

- (void)setShowRestrictedEntriesWithShowRestrictedEntries:
    (BOOL)showRestrictedEntries;

Show restricted entries along the route

Properties

@property (nonatomic, readonly, getter=isValid) BOOL valid;
Tells if this object is valid or no

Instance methods

setShowRouteWithShowRoute:

- (void)setShowRouteWithShowRoute:(BOOL)showRoute;

Show or hide route. Enabled by default. Setting it to false will not hide balloons, road events, traffic lights. Hide it manually if needed.


setShowJamsWithShowJams:

- (void)setShowJamsWithShowJams:(BOOL)showJams;

Enable or disable traffic jams along route. Enabled by default. Unless this is disabled, MapKit forces palette and colors values in routePolyline to draw jams on route. When disabled, you are free to change the routes' colors.


setShowBalloonsWithShowBalloons:

- (void)setShowBalloonsWithShowBalloons:(BOOL)showBalloons;

Show balloons related to the route. Enabled by default.


setShowRoadEventsWithShowRoadEvents:

- (void)setShowRoadEventsWithShowRoadEvents:(BOOL)showRoadEvents;

Enable or disable road events on the route. Disabled by default.


setShowTrafficLightsWithShowTrafficLights:

- (void)setShowTrafficLightsWithShowTrafficLights:(BOOL)showTrafficLights;

Show traffic lights along the route. Disabled by default.


setShowCheckpointsWithShowCheckpoints:

- (void)setShowCheckpointsWithShowCheckpoints:(BOOL)showCheckpoints;

Show checkpoints along the route. Disabled by default.


setShowRailwayCrossingsWithShowRailwayCrossings:

- (void)setShowRailwayCrossingsWithShowRailwayCrossings:
    (BOOL)showRailwayCrossings;

Show railway crossings along the route. Disabled by default.


setShowSpeedBumpsWithShowSpeedBumps:

- (void)setShowSpeedBumpsWithShowSpeedBumps:(BOOL)showSpeedBumps;

Show railway crossings along the route. Disabled by default.


setShowRoadsInPoorConditionWithShowRoadsInPoorCondition:

- (void)setShowRoadsInPoorConditionWithShowRoadsInPoorCondition:
    (BOOL)showRoadsInPoorCondition;

Show roads in poor condition along the route. Disabled by default.


setShowManoeuvresWithShowManoeuvres:

- (void)setShowManoeuvresWithShowManoeuvres:(BOOL)showManoeuvres;

Show manoeuvre arrows along the route. Disabled by default.


setShowTollRoadsWithShowTollRoads:

- (void)setShowTollRoadsWithShowTollRoads:(BOOL)showTollRoads;

Show toll roads along the route. Disabled by default.


setShowRestrictedEntriesWithShowRestrictedEntries:

- (void)setShowRestrictedEntriesWithShowRestrictedEntries:
    (BOOL)showRestrictedEntries;

Show restricted entries along the route. Disabled by default.


Properties

valid

@property (nonatomic, readonly, getter=isValid) BOOL valid;

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.