我们想要创建一个我们城市的线路巴士,我们可以使用哪种地图Api,我的朋友可以使用Google Map Api。 我们想知道如何以米为单位获得2个位置的距离,我发现方法distanceFrom()并且它在空中产生距离而不是beetwen street。 我们有一个地址表,我们希望将它与来自用户的位置进行比较,以找到最近的地址。所以我们需要找到距离位置较低的距离以及表格中所有的地址列表。 谢谢
答案 0 :(得分:0)
我的代码是使用谷歌地图销售服务在地图中获得2点或2点的距离
var PolylineOption = {
strokeColor : "blue",
strokeOpacity : 0.5,
strokeWeight : 5
};
var request = {
origin : polyline[0].start, // điểm đầu
waypoints : polyline[1].waypoint,
destination : polyline[2].end, // Điểm cuối
optimizeWaypoints : true,
travelMode : google.maps.TravelMode.DRIVING
};
rendererOptions = {
draggable : true,
suppressMarkers : true,
polylineOptions : this.PolylineOption
};
var Service = new google.maps.DirectionsService();
var Display = new google.maps.DirectionsRenderer(rendererOptions);
Display.setMap(map);
Service.route(this.request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
distance += response.routes[0].legs[0].distance.value;
// distance of 2 location
}
});