Hi,
I am upgrading my code to v4.32.9 and I had the following line in my code:
lineIntersects = geometryEngine.crosses(lastSegment, line);
and noticed that from 4.32 geometryEngine.crosses had been deprecated and I should change to use crossesOperator. So I changed the above line to:
lineIntersects = crossesOperator.execute(lastSegment, line);
Now when I run my code I get the following error:
Uncaught TypeError: e.getCacheValue is not a function