routeGeometry property

Polyline? routeGeometry

Route's geometry.

The geometry for the full route (polyline).

Implementation

Polyline? get routeGeometry {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Route_getRouteGeometry(
      _handle,
      errorHandler,
    );
  });
  return Polyline._fromHandle(
    objectHandle,
  );
}