containsGeoPoint method

bool containsGeoPoint(
  1. GeoPoint point
)

Returns true if the given GeoPoint is inside this polygon.

Implementation

bool containsGeoPoint(GeoPoint point) {
  return containsPoint(point.latitude, point.longitude);
}