abstractGeometry property
AbstractGeometry
get
abstractGeometry
Structured representation of the turn geometry.
The returned AbstractGeometry describes the intersection anchor type, drive side and a list of geometry items that can be used to render a schematic of the junction programmatically.
See also:
- AbstractGeometryImg and getAbstractGeometryImage for image representations of this geometry.
Implementation
AbstractGeometry get abstractGeometry {
final OperationResult resultString = objectMethod(
_pointerId,
'TurnDetails',
'getAbstractGeometry',
);
return AbstractGeometry.fromJson(resultString['result']);
}