javascript 使用免费增值API在地图上获取两点的getDistance

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 使用免费增值API在地图上获取两点的getDistance相关的知识,希望对你有一定的参考价值。

// See API if we can parse options.
// Minimum 2 latLng objects should be parsed to the API.
// The first object is the home address where we are, 
// and the second is where we want to go.
// 15.000 monthly requests free.

var locations = [
    {
        "latLng": {
            "lat": 50.9518466,
            "lng": 6.8956081
        }
    },
    {
        "latLng": {
            "lat": 50.9449884,
            "lng": 6.8308029
        }
    },
    {
        "latLng": {
            "lat": 53.111402,
            "lng": 8.747718
        }
    }
]
$.post("https://open.mapquestapi.com/directions/v2/routematrix?key=Mvag2SVgKEGvHMr4OwDh5wPuGakEk3ht", "json=" + JSON.stringify({locations}),"json").done(function(response) {
    console.log(response); // its ok, but options like units are not parsed
});

以上是关于javascript 使用免费增值API在地图上获取两点的getDistance的主要内容,如果未能解决你的问题,请参考以下文章

百度地图api 怎么禁止百度自己的InfoWindow

省下5wuniapp使用“天地图”地图API开发 - 免费地图组件

省下5wuniapp使用“天地图”地图API开发 - 免费地图组件

ArcGIS API for JavaScript3.x 学习笔记[4] 加载底图Open Street Map开放街道地图

百度API获取位置范围内的周边服务

谁知道百度地图API怎么做的?请告知道一下,非常感谢!