isOTRoute property

bool get isOTRoute

Whether this route is an Over-Track (OT) route.

Over-Track routes are based on a predefined path (for example, GPX-derived or user-drawn tracks) and may include limited or no routing segments/instructions depending on the source.

Returns

  • true if the route is an OT route, otherwise false.

Also see:

Implementation

bool get isOTRoute {
  final OperationResult resultString = objectMethod(
    super.pointerId,
    'Route',
    'isOTRoute',
  );

  return resultString['result'];
}