extensions property
Retrieves the map view extensions for additional functionality.
Returns a MapViewExtensions object that provides access to extended map view capabilities and specialized features not available through the core GemView interface. This includes advanced rendering options, specialized overlays, and experimental features.
See also:
- MapViewExtensions - Extended map view capabilities
Implementation
MapViewExtensions get extensions {
if (_extensions == null) {
final OperationResult resultString = objectMethod(
_pointerId,
'MapView',
'extensions',
);
_extensions = MapViewExtensions.init(
resultString['result'],
_mapId,
_pointerId,
);
}
return _extensions!;
}