如何绘制路线 我使用的是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
});