微信小程序增加地图

wx.getLocation({
type: ‘wgs84’,
success: function(res) {
var latitude = res.latitude
var longitude = res.longitude
var speed = res.speed
var accuracy = res.accuracy
}
})
定位成功会返回四个参数值,如下:

map属性太多,先看一下:

如果用到地图,基本上所有属性都会用到。
下面一一看一下,我们先看效果图吧,先看真相:

这里我只用了一个markers,就是定位当前位置的红色markers,用法如下:

wx.getLocation({
type: ‘wgs84’, // 默认为 wgs84 返回 gps 坐标,gcj02 返回可用于 wx.openLocation 的坐标
success: function (res) {

_this.setData({
latitude: res.latitude,
longitude: res.longitude,
markers: [{
id: “1”,
latitude: res.latitude,
longitude: res.longitude,
width: 50,
height: 50,
iconPath: “/assests/imgs/my.png”,
title: “哪里”

}],
circles: [{
latitude: res.latitude,
longitude: res.longitude,
color: ‘#FF0000DD’,
fillColor: ‘#7cb5ec88’,
radius: 3000,
strokeWidth: 1
}]

})
}

})
这里加了circles,半径是3000米,具体的api可自行看官网。

接下来看看controls,控制层,在地图上显示控件,控件不随着地图移动,看API:

注意看示例图的右上角,有两个按钮,加减号,是控制地图scale的数值变化,动态缩放地图的,controls用法也很简单:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
controls: [{
id: 1,
iconPath: ‘/assests/imgs/jian.png’,
position: {
left: 320,
top: 100 - 50,
width: 20,
height: 20
},
clickable: true
},
{
id: 2,
iconPath: ‘/assests/imgs/jia.png’,
position: {
left: 340,
top: 100 - 50,
width: 20,
height: 20
},
clickable: true
}
]
最后我们看一张gif图:

最后上一下具体代码:
wxml:

1

js:

Page({
data: {
Height: 0,
scale: 13,
latitude: “”,
longitude: “”,
markers: [],
controls: [{
id: 1,
iconPath: ‘/assests/imgs/jian.png’,
position: {
left: 320,
top: 100 - 50,
width: 20,
height: 20
},
clickable: true
},
{
id: 2,
iconPath: ‘/assests/imgs/jia.png’,
position: {
left: 340,
top: 100 - 50,
width: 20,
height: 20
},
clickable: true
}
],
circles: []

},

onLoad: function () {
var _this = this;

wx.getSystemInfo({
success: function (res) {
//设置map高度,根据当前设备宽高满屏显示
_this.setData({
view: {
Height: res.windowHeight
}

})

}
})

wx.getLocation({
type: ‘wgs84’, // 默认为 wgs84 返回 gps 坐标,gcj02 返回可用于 wx.openLocation 的坐标
success: function (res) {

_this.setData({
latitude: res.latitude,
longitude: res.longitude,
markers: [{
id: “1”,
latitude: res.latitude,
longitude: res.longitude,
width: 50,
height: 50,
iconPath: “/assests/imgs/my.png”,
title: “哪里”

}],
circles: [{
latitude: res.latitude,
longitude: res.longitude,
color: ‘#FF0000DD’,
fillColor: ‘#7cb5ec88’,
radius: 3000,
strokeWidth: 1
}]

})
}

})

},

regionchange(e) {
console.log(“regiοnchange===” + e.type)
},

//点击merkers
markertap(e) {
console.log(e.markerId)

wx.showActionSheet({
itemList: [“A”],
success: function (res) {
console.log(res.tapIndex)
},
fail: function (res) {
console.log(res.errMsg)
}
})
},

//点击缩放按钮动态请求数据
controltap(e) {
var that = this;
console.log(“scale===” + this.data.scale)
if (e.controlId === 1) {
// if (this.data.scale === 13) {
that.setData({
scale: --this.data.scale
})
// }
} else {
// if (this.data.scale !== 13) {
that.setData({
scale: ++this.data.scale
})
// }
}

},

})

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

程序员&孜桐

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值