Android GoogleMap 中是否可以获取某个地址的所有坐标?

Is it possible to get all the coordinates of a certain address in Android GoogleMap?

可能吗?就像当我输入一个字符串地址时,该区域的所有坐标都会出现在列表中?

如果是,你能告诉我怎么做吗?

如果否,还有其他方法吗?

如果还是No,有没有可以显示某个地址所有坐标的app或者网站?

非常感谢:)

是这样的:

Geocoder geocoder = new Geocoder(this);  
List<Address> addresses;
addresses = geocoder.getFromLocationName("addressName", 100); // maxResults = 100
for(Address address : addresses){
   double latitude= address.getLatitude();
   double longitude= address.getLongitude();
}