我可以使用下面的代碼找到附近BloodBanks
private String getUrl(double latitude, double longitude, String nearbyPlace) {
StringBuilder googlePlacesUrl = new StringBuilder("https://maps.googleapis.com/maps/api/place/nearbysearch/json?");
googlePlacesUrl.append("location=" + latitude + "," + longitude);
googlePlacesUrl.append("&radius=" + PROXIMITY_RADIUS);
googlePlacesUrl.append("&type=hospital");
googlePlacesUrl.append("&sensor=true");
googlePlacesUrl.append("&key=" + "API");
Log.d("getUrl", googlePlacesUrl.toString());
return (googlePlacesUrl.toString());
}
谷歌附近的地方API不支持血庫作爲其類型之一取附近的醫院......那麼,有沒有辦法讓只有最近的血庫?如果是這樣,你能告訴我如何...這將是一個很大的幫助,我的項目...
Google沒有針對每種可能的地點類型的類型。如果你不能讓你通過API所需的信息,你就必須建立自己的數據集,或者可能找到其他來源的數據。 – MrUpsidown