JMap.Geometry.lineIntersect
Returns true if the line feature geometry intersects the other feature geometry.
A line feature
A feature (can be not a line)
const lineFeature = ...const otherFeature = ...// The method will return true if otherFeature intersect the lineFeatureconst areIntersecting = JMap.Geometry.lineIntersect(lineFeature, otherFeature) Copy
const lineFeature = ...const otherFeature = ...// The method will return true if otherFeature intersect the lineFeatureconst areIntersecting = JMap.Geometry.lineIntersect(lineFeature, otherFeature)
JMap.Geometry.lineIntersect
Returns true if the line feature geometry intersects the other feature geometry.