我能够使用云模式&找到两点之间的路线。传单使用此。 https://gis.stackexchange.com/questions/49608/cloudmade-routing-with-leaflet-route-is-not-displayed/
但我也希望找到距离&从第一点到最后一点旅行的时间。
答案 0 :(得分:0)
请参阅具有字段getRoute
的回调response
参数route_summary
,其中包含字段total_distance
,但我认为它是直接距离。因此,responce
也有route_instructions
字段,其中length
项(标识1
)等于子路由距离(总之,它必须是实际距离)。请参阅文档:http://developers.cloudmade.com/wiki/routing-http-api/Response_structure。
答案 1 :(得分:0)
你引用这个功能...... function mapload() {
var APIKEY = '63ea548e228e44efa4cbe2cc1d82b62d';
var map = new CM.Map('innerContainer', new CM.Tiles.CloudMade.Web({key: APIKEY}));
screenSize();
window.onresize = function(event) {
screenSize();
var resize = new CM.Size(document.getElementById('innerContainer').style.width,document.getElementById('innerContainer').style.height);
map.checkResize();
map.setCenter(new CM.LatLng(11.590423, 77.817961), 15);
}
map.setCenter(new CM.LatLng(11.590423, 77.817961), 15);
var directions = new CM.Directions(map, 'panel', '63ea548e228e44efa4cbe2cc1d82b62d');
var waypoints = [new CM.LatLng(11.590423, 77.817961), new CM.LatLng(11.570621,78.745298)];
directions.loadFromWaypoints(waypoints);
var topRight = new CM.ControlPosition(CM.TOP_RIGHT, new CM.Size(50, 20));
map.addControl(new CM.SmallMapControl(), topRight);
map.addControl(new CM.LargeMapControl());
map.addControl(new CM.ScaleControl());
map.addControl(new CM.OverviewMapControl());
}