在谷歌Places API的请求有一个sensor参数?该参数如何影响结果?
目前我正在开发一个Android应用程序.根据我的收集数据,我有一个位置列表(不是地址) - 只有位置名称(例如餐馆名称,度假村,海滩......),我想在Google Map API上找到每个位置的地址,如下所示图片:

我怎么能这样做?
在这种情况下,我感谢您的帮助.谢谢.
我也在寻找一种方法,但我只找到了从特定地址获得纬度或经度的解决方案.
我实现如下代码但不能返回结果:(
Geocoder coder = new Geocoder(this);
List<Address> address;
try {
String locationName = "Nhà hàng Blanchy Street, VietNam";
Geocoder gc = new Geocoder(this);
List<Address> addressList = coder.getFromLocationName(locationName, 5);
Address location = addressList.get(0);
double latitude = location.getLatitude();
double longitude = location.getLongitude();
LatLng sydney = new LatLng(latitude , longitude );
map.setMyLocationEnabled(true);
map.moveCamera(CameraUpdateFactory.newLatLngZoom(sydney, 13));
Run Code Online (Sandbox Code Playgroud)