收藏
回答

请教下关于map组件中polyline.points的问题?

这个points不知道是什么数据类型,typeof出来是undefined,大家都是怎么给它赋值的呢?我现在需要将图中的数据转换为points需要的数据,有没有什么简单点的方法。

回答关注问题邀请回答
收藏

2 个回答

  • ther
    ther
    2022-08-14

    points需要的数据是这样的,大家有没有什么好的方法啊

    2022-08-14
    有用 1
    回复
  • 拾忆
    拾忆
    2022-08-14
    let coordinates = [[1.1,1.2],[2.1,2.2]]
    coordinates.map(item=>{
        return {'latitude': '' + item[0],'longitude': '' + item[1]}
    })
    

    2022-08-14
    有用
    回复
登录 后发表内容