Class ActionMetadata

Warning

This feature is available in the Full MapKit SDK version

Package world.mappable.mapkit.directions.driving

java.lang.Object
    ↳ world.mappable.mapkit.directions.driving.ActionMetadata

class ActionMetadata implements Serializable

Information about an action.

Summary

Constructors

Signature and Description

ActionMetadata(@Nullable UturnMetadata uturnMetadata,
               @Nullable LeaveRoundaboutMetadata leaveRoundaboutMetadada)

ActionMetadata()
Use constructor with parameters in your code.

Methods

Type and modifiers

Method and Description

UturnMetadata

getUturnMetadata()
The length of the U-turn.

LeaveRoundaboutMetadata

getLeaveRoundaboutMetadada()
The number of the exit for leaving the roundabout.

void

serialize(world.mappable.runtime.bindings.Archive archive)

Constuctors

ActionMetadata

ActionMetadata(@Nullable UturnMetadata uturnMetadata,
               @Nullable LeaveRoundaboutMetadata leaveRoundaboutMetadada)


ActionMetadata

ActionMetadata()

Use constructor with parameters in your code.

This one is for bindings only!


Methods

getUturnMetadata

@Nullable
UturnMetadata getUturnMetadata()

The length of the U-turn.

Optional field, can be null.


getLeaveRoundaboutMetadada

@Nullable
LeaveRoundaboutMetadata getLeaveRoundaboutMetadada()

The number of the exit for leaving the roundabout.

Optional field, can be null.


serialize

@Override
void serialize(world.mappable.runtime.bindings.Archive archive)


Previous