route property

Route get route

The underlying Route object represented by this map view entry.

Returns

  • Route: the route model used for routing, analysis and navigation.

See also:

Implementation

Route get route {
  final OperationResult resultString = objectMethod(
    pointerId,
    'MapViewRoute',
    'getRoute',
  );

  return Route.init(resultString['result']);
}