Hi I would like to display an URL value (field) while move around feature in webpp builder
Do you want to get a value from the url and apply to a web app builder?, do you have some example of what do you want to do ?
Thank you
Yes , I have a weather station features with their url with realtime values.I have created a feature service for the layer. When I publish this , I want the users can view the real-time values from the url while they moving their cursors on the map.
Look this example with the pointer Event, i think you can get that url value in JavaScript and then add the value from the url to the PopUp in the Right Corner.
Code to get the value from url:
var uri = window.location.href;
var query = uri.substring(uri.indexOf("?") + 1, uri.length);
var queryObject = ioQuery.queryToObject(query);
JavaScript Event Pointer Example
Access features with pointer events | ArcGIS API for JavaScript 4.6
Hi Juan,
Thank you, That's exactly that I want. Thank you . Can I Use an XML as a source of value?
Yeah you cant get XML Data this example can help you too !