Reads data from an SVG string. The assumed projection is WGS84
Implements the FeatureIterator interface
import { SVGReader } from 'gis-tools-ts';const reader = new SVGReader('svg-text');// read all the featuresfor await (const feature of reader) { console.log(feature);} Copy
import { SVGReader } from 'gis-tools-ts';const reader = new SVGReader('svg-text');// read all the featuresfor await (const feature of reader) { console.log(feature);}
Iterate over all features in the shapefile
SVG Reader
Description
Reads data from an SVG string. The assumed projection is WGS84
Implements the FeatureIterator interface
Usage
Links