MapContext
实例,可通过 wx.createMapContext
获取。MapContext
通过 id
跟一个 map
组件绑定,操作对应的 map
组件。
获取当前地图中心的经纬度。返回的是 gcj02
坐标系,可以用于 wx.openLocation()
将地图中心移置当前定位点,此时需设置地图组件 show-location
为true
。2.8.0 起支持将地图中心移动到指定位置。
平移marker
,带动画
缩放视野展示所有经纬度
获取当前地图的视野范围
获取当前地图的旋转角
获取当前地图的倾斜角
获取当前地图的缩放级别
设置地图中心点偏移,向后向下为增长,屏幕比例范围(0.25~0.75),默认偏移为[0.5, 0.5]
移除个性化图层。
添加个性化图层。
<!-- map.wxml -->
<map id="myMap" show-location />
<button type="primary" bindtap="getCenterLocation">获取位置</button>
<button type="primary" bindtap="moveToLocation">移动位置</button>
<button type="primary" bindtap="translateMarker">移动标注</button>
<button type="primary" bindtap="includePoints">缩放视野展示所有经纬度</button>
// map.js
Page({
onReady: function (e) {
// 使用 wx.createMapContext 获取 map 上下文
this.mapCtx = wx.createMapContext("myMap")
},
getCenterLocation: function () {
this.mapCtx.getCenterLocation({
success: function(res){
console.log(res.longitude)
console.log(res.latitude)
}
})
},
moveToLocation: function () {
this.mapCtx.moveToLocation()
},
translateMarker: function() {
this.mapCtx.translateMarker({
markerId: 0,
autoRotate: true,
duration: 1000,
destination: {
latitude:23.10229,
longitude:113.3345211,
},
animationEnd() {
console.log("animation end")
}
})
},
includePoints: function() {
this.mapCtx.includePoints({
padding: [10],
points: [{
latitude:23.10229,
longitude:113.3345211,
}, {
latitude:23.00229,
longitude:113.3345211,
}]
})
}
})
绘图接口和方法canvasContext.setFillStyle定义设置填充色。Tip: 如果没有设置fillStyle,默认颜色为black。参数参数类型定义col...
绘图接口和方法canvasContext.translate定义对当前坐标系的原点(0, 0)进行变换,默认的坐标系原点为页面左上角。参数参数类型说...
ANALYZE — 收集有关一个数据库的统计信息大纲ANALYZE [ ( option [, ...] ) ] [ table_and_columns [, ...] ]ANALYZE [ VERBOSE...
CREATE DOMAIN — 定义一个新的域大纲CREATE DOMAIN name [ AS ] data_type[ COLLATE collation ][ DEFAULT expression ][ const...
标识符核心描述注释B012Embedded CB021Direct SQLE011CoreNumeric data typesE011-01CoreINTEGER and SMALLINT data typesE011-0...
CREATE TEXT SEARCH CONFIGURATION — 定义一个新的文本搜索配置大纲CREATE TEXT SEARCH CONFIGURATION name (PARSER = parser_n...
DROP AGGREGATE — 移除一个聚集函数 大纲DROP AGGREGATE [ IF EXISTS ] name ( aggregate_signature ) [, ...] [ CASCADE | RES...