extensions property

MapViewExtensions get extensions

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:

Implementation

MapViewExtensions get extensions {
  if (_extensions == null) {
    final OperationResult resultString = objectMethod(
      _pointerId,
      'MapView',
      'extensions',
    );

    _extensions = MapViewExtensions.init(
      resultString['result'],
      _mapId,
      _pointerId,
    );
  }
  return _extensions!;
}