Hi @Anonymous,
Based on the issue that you mentioned, do you want to get geographic positions using Azure Maps?
Actually, it is a preview feature with a premium license which means that you should pay more for it.
I have a test on my side, please take a try as below.
Add 2 Text input control to display longitude and latitude
Add a Toggle to control whether to display the current GPS position or not
Add a Button to launch the position with "latitude and longitude" to the map.
Set the following formulas to the OnCheck and UnCheck property of the Toggle:
Set(CurrentLocation,{Lat:Location.Latitude,Lon:Location.Longitude}) // OnCheck
Set(CurrentLocation,{}) // OnUncheck
Set the Default property of the Text Input as below:
CurrentLocation.Lat
CurrentLocation.Lon
Set the OnSelect of the Button as below:
ClearCollect (Positions, {Lat: Value (TextInput1.Text), Lon: Value (TextInput2.Text), Name: "CurrentPosition"})
After that, we could get a collection of our own current GPS position, just set this collection as the Data Source of the Map, and set the following properties:
Positions.Lat //ItemsLatitudes
Positions.Lon //ItemsLongitudes
As to the address, I want to clarify to you that Address input component is a Text input where you enter address to find other geographic elements rather than get address.
For more details, please check the following article and blog:
Insert interactive maps into apps - Power Apps | Microsoft Docs
Account address capture & mapping with Power Apps - Jukka Niiranen
Powerapps, Azure Maps y Geoespatial Features | CompartiMOSS
Hope it could help you.
Regards,
Qi