Hi all,
The issue i'm having is accessing data from differing layers when attaching a click handler to a React WebMap component.
For example, the following code allows me to access latitude and longitude only:
<WebMap id="12345ABCE" onClick={(e) => this.clickHandler(e) />
in the click handler, I can use.mapPoint.latitude for example, but nothing beyond the baselayer.
My goal here is to return the values listed at a click point from a specific layer.
Many thanks