Hi.
Can anyone explain, how in Powerapps sample apps - Site Inspector, the address field is being updated using the GPS option? Because i am also trying to do the same for my app.
Using the location function, you get the latitude and longtude How to convert that into address and show it on a map?
Hi @Mod_admin,
In the Site inspector template app, the user location is calling bing map REST API to convert the latitude and longitude from location function into actual address.
The formula used in the corresponding map image is the following:
"http://dev.virtualearth.net/REST/v1/Imagery/Map/Road/" & Location.Latitude
&"," & Location.Longitude & "/15?mapSize=400,400&pp=" & Location.Latitude
&"," & Location.Longitude
&";"
&"
&key=wg9mvoY3hN6AVoUPutnZ~y8lVN1szjh6d5E8Vs8h48A~AtTHu5h2www6JiWYy5l3eKT8Cfl7SDg4f4jJUiwVL9beAGFEPcLyCe2iBvkF--_9"
And the template is using the following URL format:
Combining the point value with the Bing map URL, then put the combined URL with the Image property of an image control, then you would get the location shown as in the template.
For the location function, check:
Regards,
Michael
Hi @v-micsh-msft,
Thanks a lot. Calling the static bing map api worked.
Also can i store the address hence obtained(in the image using Map API) as text in a sharepoint list?
Hi @v-micsh-msft ,
Thanks for this solution. Can you please also let us know if its possible to capture these location details in a Sharepoint list and how.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
205 | |
70 | |
51 | |
49 | |
20 |
User | Count |
---|---|
262 | |
120 | |
85 | |
80 | |
68 |