1 Star 0 Fork 5

搬砖/小程序 地图定位

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
小程序笔记.html 804 Bytes
一键复制 编辑 原始数据 按行查看 历史
sonnyface 提交于 2018-03-21 18:33 . first
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<!-- 地图放大、缩小 -->
<view>
<button class='button' bindtap="add">放大</button>
<button class='button' bindtap="reduce">缩小</button>
</view>
<!--放大-->
add: function (e) {
var that = this;
console.log("scale===" + this.data.scale)
if (this.data.scale > 5) {
that.setData({
scale: --this.data.scale
})
} else {
that.show("最大放大级别为5");
}
},
<!--缩小-->
reduce: function (e) {
var that = this;
console.log("scale===" + this.data.scale)
if (this.data.scale < 18) {
that.setData({
scale: ++this.data.scale
})
} else {
that.show("最大放大级别为18");
}
},
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/move_bricks/small_program_map_positioning.git
[email protected]:move_bricks/small_program_map_positioning.git
move_bricks
small_program_map_positioning
小程序 地图定位
master

搜索帮助