containsGeoCoordinates method

bool containsGeoCoordinates(
  1. GeoCoordinates geoCoordinates
)

Determines whether the specified GeoCoordinates is contained within this GeoBox.

The altitude values are ignored.

  • geoCoordinates A GeoCoordinates to check for containment within this GeoBox.

Returns bool. true if contained within the GeoBox, false otherwise.

Implementation

bool containsGeoCoordinates(GeoCoordinates geoCoordinates) => $prototype.containsGeoCoordinates(this, geoCoordinates);