@hastehaul/common 3.6.0 → 3.7.0
Sign up to get free protection for your applications and to get access to all the features.
- package/build/utils/utils.js +1 -0
- package/package.json +1 -1
package/build/utils/utils.js
CHANGED
@@ -98,6 +98,7 @@ function isPointInGeoJSON(latLng, fileName) {
|
|
98
98
|
// Load and parse GeoJSON data only if not already cached
|
99
99
|
if (!cachedGeoJsonData) {
|
100
100
|
const geoJsonData = yield loadAssetStream(fileName);
|
101
|
+
console.log(geoJsonData);
|
101
102
|
cachedGeoJsonData = JSON.parse(geoJsonData);
|
102
103
|
}
|
103
104
|
// !NB points take the form longitude, latitude
|