Good Day
What is the event thrown by the Lasso selection tool?
<arcgis-sketch
hide-settings-menu
hide-snapping-controls
hide-create-tools-circle
hide-create-tools-multipoint
hide-create-tools-point
hide-create-tools-rectangle
hide-create-tools-polyline
hide-undo-redo-menu
layout="horizontal"
(arcgisCreate)="onSketchUpdate($event)"
(arcgisPropertyChange)="onSketchUpdate($event)"
(arcgisUpdate)="onSketchUpdate($event)"
[layer]="sketchLayer"
referenceElement="mapElement{{_mapId === 1 ? '1' : '2'}}"
[view]="_view">
</arcgis-sketch>
The property change event seems to throw something, but not the create or update event, so once I finish drawing how do I get the area I just made, so I can run the intersect check?
Thanks