wktGeographic top-level constant

  1. @Deprecated('Use WKT().parserGeographic() instead.')
WktFactory<GeoPoint> const wktGeographic

The default WKT factory instace assuming geographic CRS80 coordinates.

Result type candidates for point objects: GeoPoint2, GeoPoint2m, GeoPoint3, GeoPoint3m.

Supported WKT geometry types: 'POINT', 'LINESTRING', 'POLYGON', 'MULTIPOINT', 'MULTILINESTRING', 'MULTIPOLYGON', 'GEOMETRYCOLLECTION'.

See Well-known text representation of geometry.

Implementation

@Deprecated('Use WKT().parserGeographic() instead.')
const wktGeographic = WktFactory<GeoPoint>(
  pointFactory: geographicPointsWithM,
);