@igo2/geo 21.0.0-next.16 → 21.0.0-next.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -233,7 +233,7 @@ function stringToLonLat(str, mapProjection, opts = {}) {
233
233
  let lat;
234
234
  const projectionPattern = '(\\s*;\\s*[\\d]{4,6})';
235
235
  const toProjection = '4326';
236
- let projectionStr = '';
236
+ let projectionStr;
237
237
  const projectionRegex = new RegExp(projectionPattern, 'g');
238
238
  const lonlatCoord = '([-+])?([\\d]{1,3})([,.](\\d+))?°?';
239
239
  const lonLatPattern = `${lonlatCoord}[\\s,]+${lonlatCoord}`;