gis-tools-ts
Version:
A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.
9 lines • 410 B
TypeScript
import type { MValue, Properties, VectorPolygon } from '../../../index.js';
/**
* Check if two XY(Z) Polygons are equal
* @param a - The first XY(Z) Polygon
* @param b - The second XY(Z) Polygon
* @returns - True if the two XY(Z) Polygons are equal
*/
export declare function equalPolys<D extends MValue = Properties>(a: VectorPolygon<D>, b: VectorPolygon<D>): boolean;
//# sourceMappingURL=equal.d.ts.map