returnToRouteImage property
Get the vectorial representation for the return-to-route image as a AbstractGeometryImg.
Prefer AbstractGeometryImg when you need SDK-managed metadata (uid, recommended size/aspectRatio, scalability) or to request raw image bytes;
Returns
- (AbstractGeometryImg) Turn image for returning to route.
See also:
- returnToRoutePosition - Position to return to on route.
Implementation
AbstractGeometryImg get returnToRouteImage {
final OperationResult resultString = objectMethod(
pointerId,
'NavigationInstruction',
'getReturnToRouteImg',
);
return AbstractGeometryImg.init(resultString['result']);
}