interface RulerMeasurementData {
    state: number;
    token: string;
    history: RulerMeasurementHistory;
    waypoints: Point[];
    destination: any;
}

Properties

state: number

The state (Ruler#state)

token: string

The token ID (Ruler#token)

The measurement history (Ruler#history)

waypoints: Point[]

The waypoints (Ruler#waypoints)

destination: any

The destination (Ruler#destination)