谷歌地图Api直(最短)路线

时间:2013-08-03 21:49:40

标签: google-maps google-maps-api-3 routes

我目前正试图找到一种如何使用Google Maps Api V3获得直线路线的方法。

我已经设法使用地理编码和路线服务来获得从A点到B点的路线,包括两条替代路线。我还尝试了“没有高速公路”和“没有通行费”,但似乎没有任何东西可以完全解决这个问题...... 目前,我检查三条给定路线的最低里程,但必须证明这不是最短的路线。

搜索最快或最快的路线,但只是直线路径尽可能低里程

因为我没有找到任何主题,所以使用谷歌解释我需要的东西,我问你。也许有人在这里有解决方案......

P.S。:我也不能使用“行人模式”,因为当我们安装的导航系统不再工作时,它被用作我们当地消防车的导航帮助。 这也是我们需要尽可能低公里的原因 - 当在这里驾驶救火车时,最快的路线是99%的最低里程,但Api不会让我决定并且坚持使用主要道路

2 个答案:

答案 0 :(得分:1)

要获得从A到BI的最短路径,建议使用“alternatives = true”参数进行不同的查询,在avoid = toll,avoid = highways之间玩“avoid”参数,然后我会比较所有结果选择最短的路线。

 directionsService = new google.maps.DirectionsService;
//avoiding tolls
            directionsService.route({
                origin: {
                    'placeId': originId
                },
                destination: {
                    'placeId': destinationId
                },
                provideRouteAlternatives: true,
                avoidTolls: true,
                travelMode: google.maps.TravelMode.DRIVING
            }, function(response, status) {
                if (status === google.maps.DirectionsStatus.OK) {
                    routesResponses.push(response);
                }
                else {
                    window.alert('Directions request failed due to ' + status);
                }
            });
            //avoiding highways
            directionsService.route({
                origin: {
                    'placeId': originId
                },
                destination: {
                    'placeId': destinationId
                },
                provideRouteAlternatives: true,
                avoidHighways: true,
                travelMode: google.maps.TravelMode.DRIVING
            }, function(response, status) {
                if (status === google.maps.DirectionsStatus.OK) {
                    routesResponses.push(response);
                }
                else {
                    window.alert('Directions request failed due to ' + status);
                }

                //Results analysis and drawing of routes
                var fastest = Number.MAX_VALUE,
                    shortest = Number.MAX_VALUE;

                routesResponses.forEach(function(res) {
                    res.routes.forEach(function(rou, index) {
                        console.log("distance of route " +index+": " , rou.legs[0].distance.value);
                        console.log("duration of route " +index+": " , rou.legs[0].duration.value);
                        if (rou.legs[0].distance.value < shortest) shortest = rou.legs[0].distance.value  ;
                        if (rou.legs[0].duration.value < fastest) fastest = rou.legs[0].duration.value  ;

                    })
                })
                console.log("shortest: ", shortest);
                console.log("fastest: ", fastest);
//painting the routes in green blue and red
                 routesResponses.forEach(function(res) {
                    res.routes.forEach(function(rou, index) {
                        new google.maps.DirectionsRenderer({
                            map:map,
                            directions:res,
                            routeIndex:index,
                            polylineOptions:{
                                strokeColor: rou.legs[0].duration.value == fastest? "red":rou.legs[0].distance.value == shortest?"darkgreen":"blue",
                                strokeOpacity: rou.legs[0].duration.value == fastest? 0.8:rou.legs[0].distance.value == shortest? 0.9: 0.5,
                                strokeWeight: rou.legs[0].duration.value == fastest? 9:rou.legs[0].distance.value == shortest? 8: 3,
                            }
                        })
                    })
                })   
            });
        }

    }

答案 1 :(得分:1)

我使用一个解决方案,正如我所说here,它调用一次路由服务并以您认为有用的方式过滤结果。在我的例子中,我正在计算最短的路线。