geometry property
A geometry that represents the maneuver type in directions, such as a left turn or traveling in a straight line.
The geometry for the route direction.
Implementation
Geometry? get geometry {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_DirectionManeuver_getGeometry(
_handle, errorHandler);
});
return Geometry._fromHandle(objectHandle);
}