wktProjected top-level constant

  1. @Deprecated('Use WKT().parserProjected() instead.')
WktFactory<Point<num>> const wktProjected

The default WKT factory instace assuming cartesian or projected coordinates.

Result type candidates for point objects: Point2, Point2m, Point3, Point3m.

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

See Well-known text representation of geometry.

Implementation

@Deprecated('Use WKT().parserProjected() instead.')
const wktProjected = WktFactory<Point>(
  pointFactory: projectedPointsWithM,
);