从 android Geocoder 获取波斯语信息

Get persian information from android Geocoder

我正在尝试从 android Geocoder 获取波斯语信息,我的意思是我传递了纬度和经度,我想获取波斯语的城市名称,但是没有区域设置以波斯语获取这些信息。 我可以在 Place Autocomplete google 中看到用波斯语建议位置名称,但是没有为 Geocoder 设置的区域设置。 有人知道用波斯语获取这些信息的方法吗?

在构造函数中传递您想要的语言环境:

Geocoder geo = new Geocoder(getActivity(), new Locale("fa"));

更新:针对geocoding包:

 List<Placemark> _placemarks = 
     await placemarkFromCoordinates(
         latitude,
         longitude,
         localeIdentifier: "fa-IR"
     );