hello,
i just encounter an issue when using the normalizeUtils class in jsapi 4.10. After i run deep into the dist code, i'm afraid that this might be a coding issue. As u define a plain object with the key '4326', but it finally has a spatialReference of WebMercator.
As a result, i must have to use this class like this, when i decide to convert a geometry with the spatial ref 4326
normalizeUtils
.normalizeCentralMeridian([webMercatorUtils.geographicToWebMercator(line)])
.then(polylines => {
... ...
});
That should be allowed to use it directly, if i already have a geometry with sp 4326, but not to convert all them to sp 102100 again. Right?
Please look into this.