Can we please have some dataevents level interaction with ESRI layers. A common usecase for use would be when a user selects a feature on the ESRI layer, we'd like to log that in data.. something like
ON('feature-selection',(error,details)=>{
if(!error && details.feature){
SETVALUE('selected_feature',details.feature.attributes.name)
SETVALUE('selected_layer', details.layer.name)
}
})
Or even the ability to get the features from current lat lng using a spatial query - we currently do this in our forms but have to reachout to ARCGIS online directly which means the forms cannot be used offline.