well-known-parser
Version:
A WKT/WKB/EWKT/EWKB/TWKB/GeoJSON parser and serializer
18 lines (17 loc) • 774 B
TypeScript
import { Geometry } from './geometry';
import { GeometryOptions } from './types';
import { LineString } from './linestring';
import { MultiLineString as GeoJSONMultiLineString } from 'geojson';
export declare class MultiLineString extends Geometry {
lineStrings: LineString[];
constructor(lineStrings?: LineString[], srid?: number);
static Z(lineStrings?: LineString[], srid?: number): MultiLineString;
static M(lineStrings?: LineString[], srid?: number): MultiLineString;
static ZM(lineStrings?: LineString[], srid?: number): MultiLineString;
toWkt(): string;
toWkb(parentOptions?: GeometryOptions): Buffer;
toTwkb(): Buffer;
getWkbSize(): number;
toGeoJSON(): GeoJSONMultiLineString;
}
//# sourceMappingURL=multilinestring.d.ts.map