从 Here Map Rest 获取地图图像 API
Getting the map Image from the Here Map Rest API
我正在尝试通过此处的地图 REST API.
获取从 waypoint0 到 waypoint1 的地图图像
这是请求 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"
我得到的响应是一个包含数字和未知字符的大对象。我怎样才能将此响应解读为图像?
谢谢!
我能够使用来自的示例请求检索地图图像
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、应用程序代码呈现
我正在尝试通过此处的地图 REST API.
获取从 waypoint0 到 waypoint1 的地图图像这是请求 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"
我得到的响应是一个包含数字和未知字符的大对象。我怎样才能将此响应解读为图像?
谢谢!
我能够使用来自的示例请求检索地图图像 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、应用程序代码呈现