使用ionic 3在两个位置之间绘制路线方向

时间:2018-06-26 16:11:40

标签: google-maps-api-3 ionic3

如何绘制路线 我使用的是Polylin。这是一条直线。但是我想使用ionic 3框架在道路上画线。

这是折线代码:

   let points = [
        {
          lat: 6.878514,
          lng: 79.935302
        },
        {
          lat: 6.896181,
          lng: 79.923011
        }
    ];
    
    this.map.addPolyline({
        points: points,
        'color' : '#AA00FF',
        'width': 10,
        'geodesic': true
    });

0 个答案:

没有答案