parserGeographic method

WktFactory<GeoPoint> parserGeographic()

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

WktFactory<GeoPoint> parserGeographic() => const WktFactory<GeoPoint>(
      pointFactory: geographicPointsWithM,
    );