<!--
|
* @Descripttion:
|
* @version:
|
* @Author: song
|
* @Date: 2021-04-08 15:14:57
|
* @LastEditors: song
|
* @LastEditTime: 2021-04-24 11:59:43
|
-->
|
<template>
|
<div id="map">
|
<tip v-if="showTip" :title="tipTitle" :position="position"></tip>
|
</div>
|
</template>
|
<script>
|
import "ol/ol.css";
|
import OlView from "ol/View.js";
|
import XYZ from "ol/source/XYZ";
|
import OlLayerTile from "ol/layer/Tile.js";
|
import OlMap from "ol/Map.js";
|
import tip from "./tip.vue";
|
import {
|
// eslint-disable-next-line no-unused-vars
|
defaults as OlControlDefaults,
|
defaults,
|
} from "ol/control.js";
|
|
import VectorLayer from "ol/layer/Vector";
|
import VectorSource from "ol/source/Vector";
|
import Draw from "./Draw";
|
|
import Feature from "ol/Feature.js";
|
import LineString from "ol/geom/LineString.js";
|
import Polygon from "ol/geom/Polygon.js";
|
import { Style, Fill, Stroke } from "ol/style.js";
|
import OlFeature from "ol/Feature";
|
import OlGeomPoint from "ol/geom/Point";
|
import OlStyleStyle from "ol/style/Style";
|
import OlStyleIcon from "ol/style/Icon";
|
// // 用来添加相关文字描述的
|
import OlStyleText from "ol/style/Text";
|
import OlStyleFill from "ol/style/Fill";
|
|
export default {
|
name: "MapInThere",
|
components: {
|
tip
|
},
|
data() {
|
return {
|
gunAddlayer: new VectorLayer({
|
// 图标图层
|
zIndex: 22,
|
source: new VectorSource()
|
}),
|
peopleAddlayer: new VectorLayer({
|
// 图标图层
|
zIndex: 22,
|
source: new VectorSource()
|
}),
|
carAddlayer: new VectorLayer({
|
// 图标图层
|
zIndex: 22,
|
source: new VectorSource()
|
}),
|
beginsPoint: new VectorLayer({
|
// 图标图层
|
zIndex: 22,
|
source: new VectorSource()
|
}),
|
DrawLayer: new VectorLayer({
|
// 图标图层
|
// zIndex: 1000,
|
source: new VectorSource()
|
}),
|
peopleLineAddlayer: null,
|
typeSelected: "Polygon",
|
// drawLayer: null,
|
draw: null,
|
coordinates: [],
|
coordinatesStr: "",
|
beginDraw: false,
|
butTitle: "开始绘画",
|
view: "",
|
// map: null,
|
|
showTip: false,
|
tipTitle: null,
|
position: {
|
w: 200,
|
h: 10
|
},
|
// openDrawChiose: "", //openDrawPoint openDrawLine
|
openDrawLine: false,
|
openDrawPoint: false,
|
|
butTitlePoint: "选择标点",
|
olLayer: null, //点图层
|
|
nowIndex: "", //返回第几个
|
|
fromView: false, //若是查看 不显示更改按钮
|
|
openTitle: "", //当前选择
|
|
ourDatas: [], //所有数据
|
ourLayer: null, //图层合集
|
|
notNow: true, //如果修改,不显示确认按钮
|
|
polygon: [], //面的点集合
|
source: null,
|
layermian: new VectorLayer({
|
//面实例
|
zIndex: 22,
|
source: new VectorSource()
|
}),
|
urls:[
|
"http://t{0-7}.tianditu.gov.cn/DataServer?T=img_w&x={x}&y={y}&l={z}&tk=e9533f5acb2ac470b07f406a4d24b4f0",
|
"http://t{0-7}.tianditu.gov.cn/DataServer?T=cva_w&x={x}&y={y}&l={z}&tk=e9533f5acb2ac470b07f406a4d24b4f0"
|
],
|
imgSrc:''
|
};
|
},
|
computed: {
|
openDrawChiose() {
|
if (this.openDrawLine) {
|
return "openDrawLine";
|
} else if (this.openDrawPoint) {
|
return "openDrawPoint";
|
} else {
|
return "notBut---";
|
}
|
}
|
},
|
mounted() {
|
|
const ol2d = new OlMap({
|
layers: [
|
new OlLayerTile({
|
zIndex: 4,
|
title: "影像",
|
source:
|
new XYZ({
|
// url:
|
// "https://webmap-tile.sf-express.com/MapTileService/rt?fetchtype=static&x={x}&y={y}&z={z}&project=sfmap&pic_size=256&pic_type=png8&data_name=361100&data_format=merged-dat&data_type=normal" // 行政区划
|
url:this.urls[0]
|
})
|
}),
|
new OlLayerTile({
|
zIndex: 5,
|
title: "区划",
|
source:
|
new XYZ({
|
// url:
|
// "https://webmap-tile.sf-express.com/MapTileService/rt?fetchtype=static&x={x}&y={y}&z={z}&project=sfmap&pic_size=256&pic_type=png8&data_name=361100&data_format=merged-dat&data_type=normal" // 行政区划
|
url:this.urls[1],
|
})
|
})
|
],
|
|
// 注意地图控件的写法
|
controls: defaults().extend([
|
]),
|
target: "map",
|
view: new OlView({
|
center: [0, 0],
|
zoom: 13,
|
projection: "EPSG:4326"
|
})
|
});
|
window.ol2d = ol2d;
|
|
var view = ol2d.getView();
|
this.source = new VectorSource({ wrapX: false });
|
// view.setCenter([115.9032747077233, 28.67433116990186]);
|
view.setCenter([116.56705776, 27.42386903]);
|
this.view = view;
|
},
|
methods: {
|
move(val) {
|
this.view.setCenter([val[0].lng, val[0].lat]);
|
},
|
closeDraw() {
|
ol2d.removeLayer(this.layermian);
|
this.layermian = null;
|
this.layermian = new VectorLayer({
|
//重置
|
//面实例
|
zIndex: 22,
|
source: new VectorSource()
|
});
|
if (this.draw) {
|
ol2d.removeInteraction(this.draw);
|
this.polygon = [];
|
this.tipTitle = null;
|
this.showTip = false;
|
this.draw = null;
|
this.$store.commit("setpolygon", []); //用vuex传最终数据
|
}
|
},
|
// 开始绘制多边形
|
drawStart() {
|
let that = this;
|
this.polygon = [];
|
this.closeDraw();
|
this.tipTitle = "单击左键或右键开始绘画";
|
$("#map") //提示器
|
.off("mousemove")
|
.mousemove(function(e) {
|
if (!that.showTip) {
|
that.showTip = true;
|
}
|
that.setTipPosition(e.offsetX, e.offsetY, 10, 10);
|
});
|
this.draw = new Draw({
|
source: this.source,
|
type: this.typeSelected,
|
coordinate: function(res) {
|
that.tipTitle = "可继续,或选择最终位置双击结束";
|
},
|
coordinateOverPoint: function(res) {
|
},
|
coordinateOver: function(res) {
|
// 结束绘画 处理数据
|
that.tipTitle = null;
|
that.showTip = false;
|
}
|
});
|
ol2d.addInteraction(this.draw);
|
this.draw.on("drawend", function(evt) {
|
that.drawingEnd(evt);
|
});
|
},
|
|
// 构建多边形结束
|
drawingEnd(evt) {
|
let that = this;
|
const geo = evt.feature.getGeometry();
|
const t = geo.getType();
|
if (t === "Polygon") {
|
// 获取坐标点
|
const points = geo.getCoordinates();
|
points[0].map(item => {
|
that.polygon.push({ lng: item[0], lat: item[1] });
|
});
|
|
that.$store.commit("setpolygon", that.polygon); //用vuex传最终数据
|
//重新画面
|
that.addLines(that.polygon, "mian");
|
ol2d.removeInteraction(this.draw);
|
}
|
},
|
clearUseMapData() {
|
if (this.openDrawPoint) {
|
this.$store.commit("setPointData", ""); //用vuex清空最终数据
|
} else if (this.openDrawLine) {
|
this.$store.commit("setRotesData", ""); //用vuex清空最终数据
|
}
|
this.useMapData();
|
},
|
onceOnlodad(ourDatas) {
|
this.ourDatas = ourDatas;
|
},
|
//old
|
//加载底层路线和图标
|
Renders(ourDatas) {
|
this.deleteElement();
|
for (let k in ourDatas) {
|
if (ourDatas[k].isLine) {
|
if (!ourDatas[k].value) {
|
// this.deleteElement("line", ourDatas[k].id);
|
} else {
|
this.addLines(ourDatas[k], "line");
|
}
|
} else {
|
if (!ourDatas[k].value) {
|
// this.deleteElement("point", ourDatas[k].id);
|
} else {
|
this.addPoint(ourDatas[k], "point");
|
}
|
}
|
}
|
this.drawLayerRoom(); //重置绘画层
|
},
|
// 若没有value数据,删除地图上的元素
|
deleteElement(name, id) {
|
for (let k in this.ourLayer) {
|
this.ourLayer[k].getSource().clear();
|
}
|
},
|
//加载点
|
addPoint(data, name) {
|
//创建图层
|
let layer = new VectorLayer({
|
zIndex: 22,
|
source: new VectorSource()
|
}),
|
iconFeature = new OlFeature({
|
geometry: new OlGeomPoint(data.value) //绘制图形(点)
|
}),
|
iconFeatureTitle = new OlFeature({
|
geometry: new OlGeomPoint(data.value) //绘制图形(点)
|
}),
|
that = this;
|
iconFeature.setStyle(
|
new OlStyleStyle({
|
image: new OlStyleIcon({
|
scale: 0.5,
|
offset: [0, 5],
|
offsetOrigin: "bottom",
|
src: "img/dingwei/dingwei5.png"
|
})
|
})
|
);
|
iconFeatureTitle.setStyle(
|
new OlStyleStyle({
|
text: new OlStyleText({
|
text: data.name,
|
font: "14px sans-serif", // CSS 字体设置
|
scale: 1, //比例
|
offsetY: -40,
|
fill: new OlStyleFill({
|
color: "#1296DB"
|
})
|
})
|
})
|
);
|
layer.getSource().addFeature(iconFeature);
|
layer.getSource().addFeature(iconFeatureTitle);
|
//保存图层
|
this.ourLayer[name + data.id] = layer;
|
ol2d.addLayer(that.ourLayer[name + data.id]);
|
},
|
addLines(data, name, notdo = false) {
|
//创建图层
|
//绘画线路
|
// var entityData = "";
|
var entityArr = [];
|
if (notdo) {
|
entityArr = data;
|
} else {
|
for (let kd in data) {
|
entityArr.push([Number(data[kd].lng), Number(data[kd].lat)]);
|
}
|
}
|
var lineCoords = entityArr; // 线里点的集合
|
var feature_LineString = new Feature({
|
//线面板
|
geometry: new LineString(lineCoords)
|
});
|
feature_LineString.setStyle(
|
//线样式
|
new Style({
|
//填充色
|
fill: new Fill({
|
color: "rgba(255, 255, 255, 1)"
|
}),
|
//边线颜色
|
stroke: new Stroke({
|
color: "rgb(0,153,255)",
|
width: 3
|
})
|
})
|
);
|
this.layermian.getSource().addFeature(feature_LineString);
|
|
//面
|
//解析面数据
|
let mianData = [lineCoords];
|
var feature_Polygon = new Feature({
|
//面面板
|
geometry: new Polygon(mianData)
|
});
|
feature_Polygon.setStyle(
|
new Style({
|
//填充色
|
fill: new Fill({
|
color: "rgba(255, 255, 255, .5)" //填充颜色,不透明度0
|
}),
|
//边线颜色
|
stroke: new Stroke({
|
// color: "rgb(18,150,219)", //面的边界线颜色
|
color: "rgba(255, 255, 255, .5)", //面的边界线颜色
|
width: 9 //边界线宽
|
})
|
})
|
);
|
this.layermian.getSource().addFeature(feature_Polygon);
|
//保存图层
|
ol2d.addLayer(this.layermian);
|
},
|
|
//上面是初始化·················
|
|
//下面是选择点或线路开始按钮
|
init(val, num, value) {
|
this.openTitle = val;
|
if (value) {
|
this.notNow = false;
|
} else {
|
this.notNow = true;
|
}
|
this.nowIndex = num;
|
if (val.indexOf("路径") != -1) {
|
this.controlBut("openDrawLine", this.notNow);
|
} else {
|
this.controlBut("openDrawPoint", this.notNow);
|
}
|
},
|
controlBut(openName, notNow) {
|
this.closeOurBut();
|
this[openName] = true;
|
$("#" + openName).show();
|
$("#openTitle").show();
|
if (!notNow) {
|
$("#dataConfirm").show(100);
|
}
|
},
|
closeOurBut(open) {
|
$("#dataConfirm").hide();
|
$("#openDrawPoint").hide();
|
$("#openDrawLine").hide();
|
$("#openTitle").hide();
|
this.openDrawLine = false;
|
this.openDrawPoint = false;
|
if (open) {
|
this.openTitle = "";
|
this.$parent.closeOpenedMap(); //开放按钮
|
}
|
},
|
//取消按钮
|
stopDrawOur() {
|
this.closeOurBut(true);
|
},
|
//确认数据
|
useMapData() {
|
//返回用数据
|
this.$parent.MapDataShow = false;
|
let val;
|
if (this.openDrawChiose == "openDrawLine") {
|
val = "line";
|
} else if (this.openDrawChiose == "openDrawPoint") {
|
val = "point";
|
} else {
|
val = "notData";
|
}
|
this.$parent.backMapDataOurData(val, this.nowIndex);
|
// 返回后关闭操作按钮
|
this.closeOurBut();
|
//清除绘画图层
|
this.drawLayerRoom();
|
},
|
//提示位置
|
setTipPosition(x, y, n, m) {
|
this.position.w = x + n;
|
this.position.h = y + m;
|
},
|
//实时添加最上图层,为了编辑或新建路径能在最上
|
drawLayerRoom() {
|
let that = this;
|
//添加绘画图层--为了在最上层--所以每次绘画要重新添加图层
|
if (that.peopleLineAddlayer) {
|
that.peopleLineAddlayer.getSource().clear();
|
that.peopleLineAddlayer = null;
|
that.peopleLineAddlayer = new VectorLayer({
|
zIndex: 22,
|
source: new VectorSource()
|
});
|
} else {
|
that.peopleLineAddlayer = new VectorLayer({
|
zIndex: 22,
|
source: new VectorSource()
|
});
|
}
|
ol2d.addLayer(this.peopleLineAddlayer);
|
},
|
|
//选择绘画路线------↓
|
getTypeSelected() {
|
let that = this;
|
this.beginDraw = true;
|
this.draw && ol2d.removeInteraction(this.draw);
|
//再根据typeSelect的值绘制新的Interaction
|
this.drawLayerRoom(); //重置绘画层
|
this.addInteraction();
|
},
|
addInteraction() {
|
let value = this.typeSelected,
|
that = this;
|
this.tipTitle = "单击左键或右键开始绘画";
|
$("#map") //提示器
|
.off("mousemove")
|
.mousemove(function(e) {
|
if (!that.showTip) {
|
that.showTip = true;
|
}
|
that.setTipPosition(e.offsetX, e.offsetY, 10, 10);
|
});
|
this.coordinates = [];
|
if (value !== "None") {
|
this.draw = new Draw({
|
source: this.DrawLayer.getSource(),
|
type: this.typeSelected,
|
style: new Style({
|
stroke: new Stroke({
|
color: "red",
|
width: 3
|
})
|
}),
|
coordinate: function(res) {
|
//画线中的点
|
that.coordinates.push(res.coordinate_);
|
that.tipTitle = "可继续,或选择最终位置双击结束";
|
},
|
coordinateOver: function(res) {
|
// 结束绘画 处理数据
|
let d = that.doData(that.coordinates);
|
that.addLinesDraw(d);
|
that.$store.commit("setRotesData", d); //用vuex传最终数据
|
}
|
});
|
ol2d.addInteraction(this.draw);
|
}
|
},
|
//处理数据
|
doData(val) {
|
let str = "LINESTRING(";
|
for (let k = 0; k < val.length; k++) {
|
str += `${val[k][0]} ${val[k][1]}`;
|
if (k != val.length - 1) {
|
str += ",";
|
}
|
}
|
str += ")";
|
return str;
|
},
|
addLinesDraw(val) {
|
var that = this;
|
var entityData = "";
|
var entityArr = [];
|
entityData = val.match(/\(([^)]*)\)/);
|
|
// 此时result=["(dsfasjfj3124123)", "dsfasjfj3124123"];
|
if (entityData && entityData != "") {
|
entityData = entityData[1].split(",");
|
|
for (var j = 0; j < entityData.length; j++) {
|
entityArr.push([
|
Number(entityData[j].split(" ")[0]),
|
Number(entityData[j].split(" ")[1])
|
]);
|
}
|
}
|
|
var lineCoords = entityArr; // 线里点的集合
|
|
// 要素
|
var feature_LineString = new Feature({
|
geometry: new LineString(lineCoords)
|
});
|
|
feature_LineString.setStyle(
|
new Style({
|
//填充色
|
fill: new Fill({
|
color: "rgba(255, 255, 255, 0.2)"
|
}),
|
//边线颜色
|
stroke: new Stroke({
|
color: "red",
|
width: 5
|
})
|
})
|
);
|
that.peopleLineAddlayer.getSource().addFeature(feature_LineString);
|
that.butTitle = "重新绘画";
|
if (!this.fromView) {
|
$("#dataConfirm").show(100);
|
}
|
if (that.draw != null) {
|
that.beginDraw = false;
|
that.draw.controlDrawing(true);
|
that.tipTitle = "已结束绘画,点击重新绘画清除上次内容并开始绘画";
|
$("#map").unbind("mousemove");
|
// setTimeout(() => {
|
this.tipTitle = "";
|
this.showTip = false;
|
}
|
},
|
//绘画路线------↑
|
//绘画点-------↓
|
getTypeSelectedPoint() {
|
this.tipTitle = "单击左键选择位置";
|
let that = this;
|
let isHaveOne = false;
|
this.drawLayerRoom(); //重置绘画层
|
$("#map")
|
.off("mousemove")
|
.mousemove(function(e) {
|
if (!that.showTip) {
|
that.showTip = true;
|
}
|
that.setTipPosition(e.offsetX, e.offsetY, 10, 10);
|
});
|
|
if (this.typeSelected !== "None") {
|
this.draw = new Draw({
|
source: this.DrawLayer.getSource(),
|
type: this.typeSelected,
|
style: new Style({
|
stroke: new Stroke({
|
color: "red",
|
width: 3
|
})
|
}),
|
isPoint: true,
|
coordinate: function(res) {},
|
coordinateOverPoint: function(res) {
|
if (isHaveOne) {
|
return;
|
}
|
that.$store.commit("setPointData", res.coordinate); //用vuex传最终数据
|
that.addIconMarker(res.coordinate);
|
isHaveOne = true;
|
}
|
});
|
ol2d.addInteraction(this.draw);
|
}
|
},
|
addIconMarker(intlat) {
|
let that = this;
|
let iconFeature = new OlFeature({
|
geometry: new OlGeomPoint(intlat) //绘制图形(点)
|
});
|
iconFeature.setStyle(
|
new OlStyleStyle({
|
image: new OlStyleIcon({
|
scale: 0.5,
|
offset: [0, 5],
|
offsetOrigin: "bottom",
|
//透明度
|
opacity: 1,
|
//图片路径
|
src: "img/dingwei/dingwei6.png"
|
})
|
})
|
);
|
that.peopleLineAddlayer.getSource().addFeature(iconFeature);
|
this.butTitlePoint = "重新标点";
|
if (!this.fromView) {
|
$("#dataConfirm").show(100);
|
}
|
if (this.draw != null) {
|
this.draw.controlDrawing(true);
|
$("#map").unbind("mousemove");
|
this.tipTitle = "";
|
this.showTip = false;
|
}
|
}
|
//绘制点------↑
|
}
|
};
|
</script>
|
|
<style scoped lang="scss">
|
#map {
|
position: relative;
|
width: 100%;
|
height: 100%;
|
// .controlMap {
|
|
// }
|
#dataConfirm {
|
position: absolute;
|
top: 43px;
|
// left: calc(50% + 82px);
|
left: 564px;
|
z-index: 3 !important;
|
}
|
}
|
</style>
|