2015-11-10 64 views
0

我想通過這裏的地圖REST API從地圖的waypoint0到waypoint1的圖像。獲取地圖圖像從這裏地圖Rest API

這是請求URL:

http://image.maps.cit.api.here.com/mia/1.6/routing?waypoint0=:waypoint0lat%2C:waypoint0lng&waypoint1=:waypoint1lat%2C:waypoint1lng&mode=fastest%3Bcar%3Btraffic%3Adisabled&app_id=:app_id&app_code=:app_code&lc=1652B4&lw=6&t=0&ppi=320&w=400&h=600 

waypoint0lat: "40.7369182", 
waypoint0lng: "-73.9885248", 
waypoint1lat: "40.7051079", 
waypoint1lng: "-74.0157525" 

我得到的是數字和字符未知的大型對象的響應。我怎樣才能解讀這個反應到圖像中?

謝謝!

+0

你能提供的鏈接,API文檔。在圖像api.https://developer.here.com/api-explorer/rest/map-image/basic-map-image無法找到路由 – UglyCode

+0

是的。以下是鏈接:https://developer.here.com/rest-apis/documentation/enterprise-map-image/topics/examples-routing-chicago-pois.html – PBandJen

+0

我檢查了api,它會返回帶有路線的圖像在繪製的航點之間。 – UglyCode

回答

0

我能夠通過使用例如請求從 https://developer.here.com/rest-apis/documentation/enterprise-map-image/topics/examples-routing-chicago-pois.html

檢索地圖圖像使用你的座標,同樣的例子和圖像標籤應該能夠使其在網頁上爲您服務。

<html> 
<head></head> 
<body> 
    <img src="http://image.maps.cit.api.here.com/mia/1.6/routing 
?app_id={YOURAPPID} 
&app_code={YOURAPPCODE} 
&waypoint0=40.7369182,-73.9885248 
&waypoint1=40.7051079,-74.0157525 
&poix0=40.7499714,-73.9979574;00a3f2;00a3f2;11;. 
&poix1=40.7456827,-73.9954344;white;white;11;. 
&lc=1652B4 
&lw=6 
&t=0 
&ppi=320 
&w=400 
&h=600 
"/> 
</body> 

</html> 

使用演示應用程序ID渲染,應用程序代碼

enter image description here