realisticNextTurnImg property
AbstractGeometryImg
get
realisticNextTurnImg
Get the vectorial representation for the realistic next turn image as a AbstractGeometryImg.
Prefer AbstractGeometryImg when you need SDK-managed metadata (uid, recommended size/aspectRatio, scalability) or to request raw image bytes; use getRealisticNextTurnImage when you only need the raster image bytes.
Returns
- AbstractGeometryImg: vector image object for the realistic next turn.
Implementation
AbstractGeometryImg get realisticNextTurnImg {
final OperationResult resultString = objectMethod(
pointerId,
'RouteInstructionBase',
'getRealisticNextTurnImg',
);
return AbstractGeometryImg.init(resultString['result']);
}