上图:
上代码:wxml
<map id="tb_map" longitude="{{longitude}}" latitude="{{latitude}}" scale="14" bindtap="clickmaptap" bindcontroltap="controltap" bindregiοnchange="regionchange" markers="{{marks}}" polygons="{{polygons}}" polyline="{{polyline}}" include-points="{{includepoints}}"
bindmarkertap="markertap" show-compass="true" show-location="true" style="width: 100%; height:{{maph}}rpx">
<cover-image style="position: absolute;left:20px;top:100px;width:20px;height:20px" src="/images/qun.png" bindtap="getlocalimage">
</cover-image>
<cover-view class="draw" style="position: absolute;left:87%;top:20px">
<cover-image class="map_buttons" style="width:30px;height:30px" bindtap="drawtap" src="/images/draw.png" />
<cover-image class="map_buttons" style="width:30px;height:30px" bindtap="measuretap" src="/images/measure.png" />
<cover-image class="map_buttons" style="width:30px;height:30px" bindtap="backtap" src="/images/back.png" />
<cover-image class="map_buttons" style="width:30px;height:30px" bindtap="finishtap" src="/images/finish.png" />
</cover-view>
</map>
这里有很多按钮不要,cover-image不仅可以看到,并且能够点击,直接写image虽然也能看见貌似无法点击。记下这个坑
主要的事就点击map的单击事件, bindtap="clickmaptap",和数据的展示 polyline="{{polyline}}" 和markers="{{marks}}"
js:
measuretap是给地图添加状态用的,在page的data声明:mapstate(地图的状态);然后在measuretap修改mapstate的值即可
主要是点击事件,思路,点击地图获取经纬度,判断点的数量,来完成操作上代码
clickmaptap: function(e) { //单击地图事件
var mark = new object();//声明一个mark对象
mark.id = this.data.marks.length;
mark.longitude = e.detail.longitude; //经度
mark.latitude = e.detail.latitude;
mark.iconpath = "/images/point.png";
mark.width = 10;
mark.height = 12;
//在data中声明一个curpoints 来记录点击所有额点,在完成绘制的时候清空点。
var length = this.data.curpoints.push({
longitude: e.detail.longitude,
latitude: e.detail.latitude
})
var length = this.data.curpoints.length;
if (length > 1) { //添加线上的超过一个的点,每次吧距离叠加上去
var p2 = this.data.curpoints[length-1]
var p1 = this.data.curpoints[length-2]
dis += util.distance(p1, p2);
let datas = number(dis); //转为字符串
let datas2 = datas.tofixed(2) + "米";//保留两位小数
var x = -(datas2.length * 1)//设置文字向左偏移
mark.label = {
fontsize: 14,
anchorx: x,
anchory: 0,
content: datas2,
textalign: 'center',
color: '#000000',
}
this.data.marks.push(mark);
// console.log(this.data.curpoints)
//这里地图上用的polyline是一个线集合对象,所以,如果只放一条线是无法看见的。
var pl = [{
points: this.data.curpoints,
color: "#0066ff",
width: 2,
dottedline: false,
}];
//更改界面数据
this.setdata({
marks: this.data.marks,
polyline:pl
})
} else { //添加线上的第一个点
this.data.marks.push(mark);
this.setdata({
marks: this.data.marks
})
}
}
},
工具类util:
//给定的经度1,纬度1;经度2,纬度2. 计算2个经纬度之间的距离。
//<returns>距离 (单位:米)</returns>
//util的方法是通过读取类文件,然后通过映射获取的,所以需要在使用的page中加入
//var util = require('../../../utils/util.js');相当于一个导入的过程。
function distance(p1, p2) {
//用haversine公式计算球面两点间的距离。
//经纬度转换成弧度
var lat1 = p1.latitude * math.pi / 180;
var lon1 = p1.longitude * math.pi / 180;
var lat2 = p2.latitude * math.pi / 180;
var lon2 = p2.longitude * math.pi / 180;
//差值
var vlon = math.abs(lon1 - lon2);
var vlat = math.abs(lat1 - lat2);
//h is the great circle distance in radians, great circle就是一个球体上的切面,它的圆心即是球心的一个周长最大的圆。
var v = math.sin(vlat / 2);
var v1 = math.sin(vlon / 2);
var h = v * v + math.cos(lat1) * math.cos(lat2) * v1 * v1;
// 地球半径 平均值,米
var distance = 2 * 6371000 * math.asin(math.sqrt(h));
return distance;
}
module.exports = {//用于映射函数
distance: distance,
}
注意点:
1.导入util的类文件
2.类文件中的方法模板的映射关系
3.ployline对象是一个数组,不是对象,所以注意层级关系。
总结
以上所述是小编给大家介绍的微信小程序地图绘制线段并且测量,希望对大家有所帮助