geographicPointsWithM function

PointFactory<GeoPoint> geographicPointsWithM({
  1. required bool expectM,
})

Returns a factory for geographic GeoPoint objects allowing M coordinate.

Result type candidates for objects created by a factory: GeoPoint2, GeoPoint2m, GeoPoint3, GeoPoint3m.

Implementation

PointFactory<GeoPoint> geographicPointsWithM({required bool expectM}) =>
    _CreateGeoPointAllowingM(expectM: expectM);