10.打开地图选择位置。

wx.chooseLocation

image.png

map.js

Page({

  /**
   * 页面的初始数据
   */
  data: {
    myaddress: [],
  },

  /**
   * 地图
   */
    changelocation() {
        wx.chooseLocation({
            success: (res) => {
                this.setData({
                    myaddress: res.address
                })
            },
        })
    },
})
image.png

map.wxml

定位:{{myaddress}}

你可能感兴趣的:(10.打开地图选择位置。)