areaOfInterest property

Geometry? areaOfInterest

The area of interest bounding the offline map area.

The area of interest is returned as a Geometry, which can be either an Envelope or a Polygon depending on how the online map area was created.

Implementation

Geometry? get areaOfInterest {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_PreplannedMapArea_getAreaOfInterest(
      _handle,
      errorHandler,
    );
  });
  return Geometry._fromHandle(
    objectHandle,
  );
}