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:
Static Map Data
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:
Location in PowerApps
Regards,
Michael