Android getFromLocationName return results outside the bounding box
问题 I am doing a location search from my android app. User enter an address and I do a lookup with the following code, private void doSearch(String query){ FNMApplication.logInfo("Searching:"+query); //create a geocoder Geocoder gc = new Geocoder(this,Locale.getDefault()); try{ //lookup locations which match the query input by the user List<Address> addresses = gc.getFromLocationName(query, 5, -44.00, 111.00, -12.0, 155.0); //if there are any results save them in an ivar for re-use