https://developers.google.com/maps/documentation/geocoding/intro?hl=zh-tw 在这个网站中,我可以输入一些内容来了解我输入的地址,类型或位置。如何获得我输入的类型?当我输入“台北101星巴克”时,网站将回复:110台湾台北市信义区信义路5段7号35之一,地点:25.033718,121.56481,类型:咖啡厅,设施,食品,景点。 如何获得类型?
List<android.location.Address> addressList = null;
Geocoder geocoder = new Geocoder(MapsActivity.this);
try {
addressList = geocoder.getFromLocationName(search, 1);
catch (IOException e)
{
e.printStackTrace();
}
android.location.Address address = addressList.get(1);
LatLng latLng = new LatLng(address.getLatitude(),
address.getLongitude());
这部分可以帮我找到lat和lng,但我想找到地点类型