vue 开发
小小小元~~
这个作者很懒,什么都没留下…
展开
-
leaflet移除画的线以及移除marker
// 使用polyline画出一个轨迹let polyline = L.polyline(this.latlngs, {color: ‘green’}).addTo(this.map)// 清除polyline线clearPolylineGroup (polyline_group){this.latlngs = [];if(polyline_group){this.map.removeLayer(polyline_group);}},// 使用marker标注this.robotMar原创 2020-12-25 14:39:43 · 3484 阅读 · 2 评论 -
leaflet地图绘画引擎引用自己的背景做地图背景
this.map = L.map(“map”, {zoom: 1, //缩放比列minZoom: -5,zoomControl: true, // + - 按钮doubleClickZoom: false, // 禁用双击放大attributionControl: false,// 移除右下角leaflet标识maxZoom: 4,center: [0, 0],crs: L.CRS.Simple});let w = nowWidth,h = nowHeight;let url = p原创 2020-12-25 14:33:10 · 1297 阅读 · 0 评论 -
element-ui Popconfirm 组件事件 (onconfirm不起作用)
使用 npm i element-ui -S 下载源码后引用Popconfirm 组件事件<el-popconfirmconfirm-button-text=“确认”cancel-button-text=“取消”icon=“el-icon-info”icon-color=“red”title=“确认要删除该条记录?”@onConfirm=“handledelete(scope.$index, scope.row)”>此时点击按钮触发不了onconfirm绑定的事件,在百度上原创 2020-12-12 18:00:24 · 3246 阅读 · 5 评论