//

1010
2
04-04-2018 11:06 AM
_____
by
New Member
 
0 Kudos
2 Replies
BalajiVeera
Occasional Contributor

Try with asynchronous client-side geometry engine

geometryEngineAsync.intersect(line1, line2).then(
    function (resint){
       console.log(resint);
    }
 );          
0 Kudos
ReneRubalcava
Frequent Contributor

I think, if I can remember correctly, the output geometry type would be the same as the input type. So a line would need to sit directly on another line and you would get that intersect back. I don't think it would return a point where two lines intersect.

0 Kudos