I am trying to pass one location from one app to another. I have the following code:
var url = "https://myportal/portal/apps/webappviewer/index.html?id=bdaa341db0b545a29df20d85d93b051f¢er=" + text(Longitude) + "," + text(Latitude)+"&"+ "scale="+text(Scale);
return url
I can pass to this web app from another web app with no issues but when I try to pass to another web app that has a url of "https://myportal:3344/webappbilder/apps/5" the process errors out. Can I pass to a url with the above format?
Thanks
Solved! Go to Solution.
It should work based on the documentation. https://developers.arcgis.com/web-appbuilder/guide/xt-app-url-parameters-for-dev.htm
It should work based on the documentation. https://developers.arcgis.com/web-appbuilder/guide/xt-app-url-parameters-for-dev.htm
That worked perfect! Thank you!