routeGeometry property

Polyline? routeGeometry

Route's geometry.

The geometry for the full route (polyline) in case if ClosestFacilityParameters.returnRoutes is true.

Implementation

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