This repository was archived by the owner on May 15, 2024. It is now read-only.
This repository was archived by the owner on May 15, 2024. It is now read-only.
[Enhancement] Get Address in specific Language (Arabic, French , ..etc) using Geolocation #1164
Open
Description
Summary
I am using Geolocation to get current address.
It gives me address properly, but in default Mobile language.
I want to determine the language of returned address as parameter like Geolocation("Ar") return the address in Arabic regardless of default Mobile language.
API Changes
Add AddressLanguage parameter to GetPlacemarksAsync like
var Address =await Geocoding.GetPlacemarksAsync(Latitude , Longitude , AddressLanguage);
return the Address regarding AddressLanguage
Intended Use Case
Assume the default Mobile language is English
Geocoding.GetPlacemarksAsync(Latitude , Longitude , "Ar") return the address in Arabic
Geocoding.GetPlacemarksAsync(Latitude , Longitude , "Fr") return the address in French