When I select a point on the map, a popUp opens that shows information about that point, I need to capture that information to use that data, but I don't know how to do that in JavaScript
Solved! Go to Solution.
You can user hitTest method to capture graphic when user clicks on the view
view.hitTest(event, opts).then((result)=>{
const graphic = response.results[0].graphic;
});
See this sample: https://developers.arcgis.com/javascript/latest/sample-code/view-hittest/
You can user hitTest method to capture graphic when user clicks on the view
view.hitTest(event, opts).then((result)=>{
const graphic = response.results[0].graphic;
});
See this sample: https://developers.arcgis.com/javascript/latest/sample-code/view-hittest/