Hi, i am using bingmaps.get route in a label, one of the waypoints is based off a input field that the user inputs a address (not using the address input field that powerapp provides but a normal input field). is there any way to handle the 404 or 400 errors that could occur. For example if the user enters an incorrect postcode which will result in bingmaps returning a 400 error. However im not sure how to display the error message that is returned in powerapps.
Solved! Go to Solution.
Hi @Anonymous ,
I did a test for you:
1\ Open the setting as shown
2\ Add a textinput control 'TextInput1' and set its onchange property to:
Set(thevar,TextInput1.Text)
3\ Add a button control and set its onselect property to:
IfError(BingMaps.GetRoute("Seattle",thevar).travelDistance, Set(A,"error"),Set(A,""));Set(thevar2,BingMaps.GetRoute("Seattle",thevar).travelDistance)
4\ Add a label control and set its Text property to:
thevar2
5\ Add a label control and set its Text property to:
A
6\ The result is as follows:
Best Regards,
Wearsky
If my post helps, then please consider Accept it as the solution to help others. Thanks.
Hi @Anonymous ,
I did a test for you:
1\ Open the setting as shown
2\ Add a textinput control 'TextInput1' and set its onchange property to:
Set(thevar,TextInput1.Text)
3\ Add a button control and set its onselect property to:
IfError(BingMaps.GetRoute("Seattle",thevar).travelDistance, Set(A,"error"),Set(A,""));Set(thevar2,BingMaps.GetRoute("Seattle",thevar).travelDistance)
4\ Add a label control and set its Text property to:
thevar2
5\ Add a label control and set its Text property to:
A
6\ The result is as follows:
Best Regards,
Wearsky
If my post helps, then please consider Accept it as the solution to help others. Thanks.