I use identify to identify feature when click on map:
view.on("click", (event: ViewClickEvent) => {
const params = new IdentifyParameters({
geometry: event.mapPoint
// .....
});
identify.identify(url, params);
});
Is it possible to know a feature that is already identified, so that identify.identify won't be called when clicked on it again?
When I click on it again, I want show it's popup.
Thanks.
Forrest