Hi. I'm quite new to using PowerApps.
I'm working on a simple app where you create records to store in a Sharepoint list.
Three of the columns in each record would be "Travelling From", "Destination" and "Mileage".
The former two are Location type columns and Mileage is meant to be the distance, in miles, automatically calculated between
these two locations. I enter my starting and destination locations on my PowerApp, it calculates the mileage between them
and stores it in the record with them. Once I submit the form, a new item is created with that data in the Sharepoint list.
The question is how do I make that calculation?
Thanks.
Solved! Go to Solution.
Hi@PurpleHaze,
Based on the issue that you mentioned, do you want to calculate the distance between two locations?
Actually, the Location column is not the most efficient choice, you can just add three Text columns in your SP list to be filled with "Travelling From", "Destination" and "Mileage".
In general, we use the Bing Map connector to locate and calculate distance. Yes, @jlindstrom provides the correct direction.
Add a Button and set the OnSelect property as below.
Set(
Dis,
BingMaps.GetRoute(
TextInput1.Text,
TextInput2.Text,
{distanceUnit: "Mile"}
)
)
Set the Text property of the corresponding "Mileage" control as below
Dis.travelDistance & " " & Dis.distanceUnit
Best Regards,
Qi
Use the Bing Maps connector.
You will need to go to https://docs.microsoft.com/en-us/bingmaps/getting-started/bing-maps-dev-center-help/getting-a-bing-m... and get an api key
Once you have that, you can use the following expression to get the mileage between two locations
BingMaps.GetRoute(
TextInput1.Text,
TextInput2.Text,
{ distanceUnit: "Mile" }).travelDistance
Thanks. But are there any other map services I can use?
Not as standard connectors but you can write a custom connector to any rest based API. Does Bing Maps not recogize your location?
I hadn't tried it yet, I'm just wondering why Bing seems to be the only option when there's also Google Maps.
Hi@PurpleHaze,
Based on the issue that you mentioned, do you want to calculate the distance between two locations?
Actually, the Location column is not the most efficient choice, you can just add three Text columns in your SP list to be filled with "Travelling From", "Destination" and "Mileage".
In general, we use the Bing Map connector to locate and calculate distance. Yes, @jlindstrom provides the correct direction.
Add a Button and set the OnSelect property as below.
Set(
Dis,
BingMaps.GetRoute(
TextInput1.Text,
TextInput2.Text,
{distanceUnit: "Mile"}
)
)
Set the Text property of the corresponding "Mileage" control as below
Dis.travelDistance & " " & Dis.distanceUnit
Best Regards,
Qi
the connectors in Power platform are based on what those companies want to expose via Power Platform connectors. They own them. Google is a competitor to Microsoft and has a competitive app/forms product. they have recently restricted many of the existing google services connectors.
the bing maps connector works well.
Check out new user group experience and if you are a leader please create your group
Did you miss the call?? Check out the Power Apps Community Call here!
See the latest Power Apps innovations, updates, and demos from the Microsoft Business Applications Launch Event.
User | Count |
---|---|
274 | |
257 | |
87 | |
39 | |
34 |
User | Count |
---|---|
340 | |
250 | |
131 | |
73 | |
48 |