parserProjected method

WktFactory<Point<num>> parserProjected()

The default WKT factory instace assuming cartesian/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

WktFactory<Point> parserProjected() => const WktFactory<Point>(
      pointFactory: projectedPointsWithM,
    );