Hi@jeniviya,
Based on the issue that you mentioned, do you want to get location name based on the "Location.Longitude" and "Location.Lattitude"?
Could you please share a bit more about the scenario, what is the column type in your SP list to store the location, Text or Location type?
As we know, the Location type is only editable within the SP list and is read-only in PowerApps. There is no way to update the Location column directly in PowerApps. So I advise that you'd better add Text type columns to store the location name.
I have a test on my side, please take a try as below.
How to get Bing Map API Key:
- Connect to Bing Maps Portal
- ‘Sign In’ using either ‘Microsoft Account’ or ‘Enterprise Azure Active Directory account’.
- Go to ‘My account -> My Keys’ and create a new key. (Steps to create new key)
- Copy the Key which we gonna use in next steps.
Connect the BingMaps to your App:
- Paste your API key within the input box
Inset a Button and a TextInput.
Set the OnSelect property of the Button as below:
Set(myLocation, BingMaps.GetLocationByPoint(Location.Latitude, Location.Longitude))
Set the Default property of the TextInput as below:
myLocation.name
Add a second button and set the OnSelect property as below:
Patch(MyLocation,Defaults(MyLocation),{Title:1001,Location:TextInput1.Text})
Note: 'MyLocation' is my SP list name. 'The 'Location' is a Text column to store my location.

Hope it could help.
Best Regards,
Qi