containsGeoBox method

bool containsGeoBox(
  1. GeoBox geoBox
)

Determines whether the specified GeoBox is covered entirely by this GeoBox.

The altitude values are ignored.

  • geoBox A GeoBox to check for containment within this GeoBox.

Returns bool. true if covered by the GeoBox, false otherwise.

Implementation

bool containsGeoBox(GeoBox geoBox) => $prototype.containsGeoBox(this, geoBox);