mapViewPerspective property

MapViewPerspective get mapViewPerspective

Get the map view perspective.

The perspective determines how the 3D scene is projected onto the 2D screen. Different perspectives affect how distances and angles appear, which can be useful for specific visualization needs.

Returns

(MapViewPerspective) The current perspective mode for this view.

See also:

Implementation

MapViewPerspective get mapViewPerspective {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewPreferences',
    'getMapViewPerspective',
    dependencyId: _mapPointerId,
  );

  return MapViewPerspectiveExtension.fromId(resultString['result']);
}