viewpointType property
The viewpoint's type.
This will be defined by a geometry or an ArcGISPoint geometry and scale.
Implementation
ViewpointType get viewpointType {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Viewpoint_getViewpointType(
_handle,
errorHandler,
);
});
return ViewpointType._fromCoreValue(
coreValue,
);
}