From 46b3b161b89e7601ccb69d1f1f41f0120d4f9434 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Sat, 8 Jul 2023 22:21:08 +0100 Subject: [PATCH] Fix compile error (due to wrong GeoJSON import) --- pointInPoly.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pointInPoly.ts b/pointInPoly.ts index 49eabd8..67729e3 100644 --- a/pointInPoly.ts +++ b/pointInPoly.ts @@ -1,4 +1,4 @@ -import { Position, Polygon, Feature, FeatureCollection } from 'GeoJSON'; +import { Position, Polygon, Feature, FeatureCollection } from 'geojson'; type PointXY = { x: number,