camera property

MapCamera get camera

Get the camera

Returns

Throws

  • An exception if it fails.

Implementation

MapCamera get camera {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapView',
    'getCamera',
  );

  return MapCamera.init(resultString['result'], _mapId);
}