我需要限制places api的结果,使得国家名称不应该出现在JSON结果的描述中。
String input="";
try {
input = "input=" + URLEncoder.encode(place[0], "utf-8");
} catch (UnsupportedEncodingException e1) {
e1.printStackTrace();
}
String types = "types=geocode";
String sensor = "sensor=false";
String parameters = input+"&"+types+"&"+sensor+"&"+key;
String output = "json";
String GOOGLE_MAPS_URL = "https://maps.googleapis.com/maps/api/place/autocomplete/"+output+"?"+parameters;
在搜索时我得到结果为 印第安纳波利斯,IN,美国。 有没有办法可以得到一个省略国名的结果?
喜欢:印第安纳波利斯,IN。