0
有沒有一種方法可以在不知道座標的情況下在Google MapView上顯示一個點,只需要一個地址?在沒有座標的MapView上顯示點
我的目標是避免使用地理編碼API,我知道它具有使用限制。它是否正確?
有沒有一種方法可以在不知道座標的情況下在Google MapView上顯示一個點,只需要一個地址?在沒有座標的MapView上顯示點
我的目標是避免使用地理編碼API,我知道它具有使用限制。它是否正確?
使用的Android Geocoder類,你可以做到這一點。您可以通過給定的地址獲得經緯度..
喜歡的東西,
Geocoder geoCoder = new Geocoder(this);
List<Address> address;
try {
address = geoCoder.getFromLocationName("Address",1);
if (address == null) {
return null;
}
Address location = address.get(0);
location.getLatitude();
location.getLongitude();
}
而且
My goal is to avoid using the geocoding API, which I understand has a usage limit. Is this correct?
正如你說你不想限制查詢...
所以看看這兩個鏈接android-geocoder-limitations和SE問題/how-to-avoid-google-map-geocode-limit它會幫助你...