var amapFile = require('../../libs/amap-wx.js');//如:../../libs/amap-wx.js
Page({
data: {
markers: [],latitude: '',longitude: '',textData: {},dome:false
},onLoad: function() {
var that = this;
wx.getLocation({
type: 'wgs84',success: (res) => {
console.log(res);
that.setData({
latitude: res.latitude,longitude: res.longitude
})
var marker = [{
id: 1,latitude: res.latitude,longitude: res.longitude,iconPath: "../../images/marker.png",width: 22,height: 32,callout: {
content: "你的位置\n换行内容",color: "#333333",fontSize: 13,borderRadius: 20,bgColor: "#ffffff",textAlign: "center",padding: 10,display: 'ALWAYS'
}
}]
that.setData({
markers: marker
});
that.setData({
dome: true
});
},});
},})