2012-12-04 82 views
0

我使用的是谷歌Places API的獲得地方數據圖像:檢索來自谷歌Places API的

https://maps.googleapis.com/maps/api/place/search/json? + "location=" + strlatitude + "," + strlongitude + "&" +"radius=" + searchRadius + "&" +"types="+ types + "&" + "sensor=true" + "&" + "key=" + googleAPIKey; 

我只是從這個response.But我想那個地方的形象只得到「圖標」。

是否有任何參數來獲取地點的圖像?

此外,我怎麼能得到地方的意見(喜歡9reviews,6reviews等)

回答

0

您可以通過使用JSONObject得到image_link,並且可以將特定鏈路使用Bitmap容易轉換爲圖像。

例如,從Json越來越image_link

JSONObject jsonObj = new JSONObject(Global.JSON.toString()); 

// Creating JSON Parser instance 
JSONArray jr=jsonObj.getJSONArray("results"); 

for(int h=0;h<jr.length();h++) 
{  
    JSONObject js=jr.getJSONObject(h);  
    icon_array=js.getString("icon");  
} 

轉換鏈接到圖片

url = new URL("http://www.paho.org/Images/DD/PIN/whd08_banner2_eng.jpg"); 
//In URL pass your link 

bmp = BitmapFactory.decodeStream(url.openConnection().getInputStream()); 
image_view.setImageBitmap(bm); 
+0

我越來越「圖標」,但我怎麼能夠得到特定地點的圖像 – user1871951

+0

等待您的回覆 – user1871951

+0

@大衛,你能回答這個問題嗎? – user1871951