vue大屏项目开发,客户觉得地图上的文字标注太多了,要求地图上只显示省市等主要城市的标注。
研究了一下地图,并没有找到可以过滤的名称的配置,只能使用LabelMarker进行自定义配置了。
配置前,要先隐藏地图自带的标注
vue 高德地图显示要素,通过Map.setFeatur...
yekong
3年前 (2022-06-30)
喜欢
vue数据化大屏开发,需要鼠标放在polyline上显示ployline的信息弹窗,鼠标移开信息弹窗关闭,记录一下实现过程,如果后期遇到可以复用。
this.potList.forEach(item => {
// 绘制线路
var pol...
yekong
3年前 (2022-06-29)
喜欢
高德地图显示地图要素 区域面 道路 建筑物 标注
实例代码 初始化设置
that.map = new AMap.Map('gd_map_d', {
zoom: 13,
mapStyle: 'amap://styles/darkblue',
...
yekong
3年前 (2022-06-28)
喜欢
github文档地址
github文档地址
安装依赖
npm install validator --save
使用
非es6
var validator = require('validator');
es6
import validator from 'validator...
yekong
3年前 (2022-06-26)
喜欢
百度地图getBounds每隔一段时间字段名就会发生变化
如果每个一段时间就会变化的话,不可能让用户每次都跟着调整字段吧,搜索了一下发现原来是有获取的方法的
右上角经纬度 东北角
var bounds = that.map.getBounds()
co...
yekong
3年前 (2022-06-24)
喜欢
高德地图移除代码
that.map.remove(that.markerList);
添加marker
this.potList.forEach(item => {
// 根据type判断icon类型
// 1 隧道 2服务区 ...
yekong
3年前 (2022-06-23)
喜欢
高德地图 初始化时 设置中心点和级别无效,于是延迟1秒后重新设置。
that.map.setZoomAndCenter(13, [108.095907, 23.919379])
initMap() {
//仅供参考
var that = this...
yekong
3年前 (2022-06-23)
喜欢
文档地址
文档地址
中文文档地址
安装依赖
npm install v-viewer --save
main.js 引入
//预览图片
import Viewer from 'v-viewer'
import 'viewerjs/dist/viewer.css'
Vue.use...
yekong
3年前 (2022-06-20)
喜欢
vue2 数据可视化大屏 项目开发时,经常会遇到table效果,但是限于页面大小,table的数据并不能完全的显示出来,这就需要让table滚动起来。当前是使用的vue2如果是vue3项目中开发的话,可以用:vue3 table结合vue3-seamless-scroll实现滚动...
yekong
3年前 (2022-06-15)
喜欢
<div class="userInfos">
<el-dropdown trigger="click">
<div class="userInfo"&...
yekong
3年前 (2022-06-15)
喜欢