<!--
|
* @Descripttion:
|
* @version:
|
* @Author: song
|
* @Date: 2021-04-08 15:14:57
|
* @LastEditors: song
|
* @LastEditTime: 2021-04-24 11:59:43
|
-->
|
<template>
|
<div id="map" style="height: calc(100% - 40px)">
|
<tip v-show="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 {
|
defaults as OlControlDefaults,
|
defaults,
|
} from "ol/control.js";
|
|
import VectorLayer from "ol/layer/Vector";
|
import VectorSource from "ol/source/Vector";
|
import { Vector } from "ol/source";
|
import Draw from "./Draw";
|
|
import Feature from "ol/Feature.js";
|
import Point from "ol/geom/Point.js";
|
import LineString from "ol/geom/LineString.js";
|
import { Icon, 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";
|
|
export default {
|
name: "Map",
|
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()
|
}),
|
peopleLineAddlayer: new VectorLayer({
|
// 图标图层
|
zIndex: 22,
|
source: new VectorSource()
|
}),
|
beginsPoint: new VectorLayer({
|
// 图标图层
|
zIndex: 22,
|
source: new VectorSource()
|
}),
|
|
typeSelected: "LineString",
|
drawLayer: null,
|
draw: null,
|
coordinates: [],
|
coordinatesStr: "",
|
beginDraw: false,
|
butTitle: "开始绘画",
|
view: "",
|
// map: null,
|
|
showTip: false,
|
tipTitle: "",
|
position: {
|
w: 200,
|
h: 10
|
},
|
openDrawLine: false,
|
openDrawPoint: false,
|
|
butTitlePoint: "选择标点",
|
olLayer: null, //点图层
|
|
nowIndex: "", //返回第几个
|
|
fromView: false //若是查看 不显示更改按钮
|
};
|
},
|
computed: {
|
openDrawChiose() {
|
if (this.openDrawLine) {
|
return "openDrawLine";
|
} else if (this.openDrawPoint) {
|
return "openDrawPoint";
|
} else {
|
return "";
|
}
|
}
|
},
|
mounted() {
|
const ol2d = new OlMap({
|
layers: [
|
new OlLayerTile({
|
zIndex: 4,
|
title: "矢量",
|
source: new XYZ({
|
url:
|
"http://t3.tianditu.com/DataServer?T=vec_w&x={x}&y={y}&l={z}&tk=e9533f5acb2ac470b07f406a4d24b4f0", // 行政区划
|
// url: "/localData/sl/{z}/{x}/{y}.png",
|
tileUrlFunction: function(tileCoord) {
|
var z = tileCoord[0];
|
var x = tileCoord[1];
|
var y = Math.pow(2, z) + tileCoord[2];
|
return "../assets/sl/" + z + "/" + x + "/" + y + ".png";
|
}
|
})
|
}),
|
new OlLayerTile({
|
zIndex: 5,
|
title: "中文注记",
|
source: new XYZ({
|
url:
|
"http://t3.tianditu.com/DataServer?T=cva_w&x={x}&y={y}&l={z}&tk=e9533f5acb2ac470b07f406a4d24b4f0" // 注记
|
})
|
})
|
],
|
|
// 注意地图控件的写法
|
controls: defaults().extend([
|
]),
|
target: "map",
|
view: new OlView({
|
center: [0, 0],
|
zoom: 2,
|
projection: "EPSG:4326"
|
})
|
});
|
window.ol2d = ol2d;
|
|
var view = ol2d.getView();
|
view.setCenter([114.03858862, 27.63088262]);
|
|
view.setZoom(18);
|
this.view = view;
|
|
ol2d.addLayer(this.gunAddlayer);
|
ol2d.addLayer(this.peopleAddlayer);
|
ol2d.addLayer(this.carAddlayer);
|
ol2d.addLayer(this.peopleLineAddlayer);
|
ol2d.addLayer(this.beginsPoint);
|
// this.addLines()
|
let that = this;
|
that.addNewLine();
|
|
return;
|
that.beginsPoint.getSource().clear();
|
let iconFeature = new OlFeature({
|
geometry: new OlGeomPoint([114.03928791, 27.62954732]) //绘制图形(点)
|
});
|
iconFeature.setStyle(
|
new OlStyleStyle({
|
image: new OlStyleIcon({
|
scale: 0.5,
|
offset: [0, 5],
|
offsetOrigin: "bottom",
|
//透明度
|
opacity: 1,
|
//图片路径
|
src: "img/dingwei/dingwei4.png"
|
})
|
})
|
);
|
that.beginsPoint.getSource().addFeature(iconFeature);
|
|
//监听鼠标位置
|
//
|
},
|
methods: {
|
init(val, num, value, fromView) {
|
if (fromView) {
|
this.fromView = fromView;
|
}
|
//若是查看 不显示更改按钮
|
//初始化
|
// console.log(val, "地图初始化", "第:" + num);
|
this.nowIndex = num;
|
if (val.indexOf("路径") != -1) {
|
// console.log("加载路径");
|
if (!fromView) {
|
this.openDrawLineMethod();
|
}
|
if (value) {
|
//有数据就加载
|
this.addLinesDraw(value);
|
}
|
} else {
|
// console.log("加载标点");
|
if (!fromView) {
|
this.openDrawPointMethod();
|
}
|
if (value) {
|
//有数据就加载
|
let intlat = value;
|
if (typeof value == "string") {
|
intlat = value.split(","); //改为数组
|
intlat = [+intlat[0], +intlat[1]]; //改为数字
|
}
|
this.addIconMarker(intlat);
|
}
|
}
|
},
|
useMapData() {
|
//返回用数据
|
this.$parent.MapDataShow = false;
|
let val;
|
if (this.openDrawPoint) {
|
val = "point";
|
} else if (this.openDrawLine) {
|
val = "line";
|
}
|
this.$parent.backMapData(val, this.nowIndex);
|
},
|
clearUseMapData() {
|
if (this.openDrawPoint) {
|
this.$store.commit("setPointData", ""); //用vuex清空最终数据
|
} else if (this.openDrawLine) {
|
this.$store.commit("setRotesData", ""); //用vuex清空最终数据
|
}
|
this.useMapData();
|
},
|
openDrawLineMethod() {
|
if (this.openDrawPoint) {
|
this.openDrawPoint = false;
|
$("#openDrawPoiton").hide();
|
}
|
//打开画路径
|
$("#openDrawLine").toggle(100);
|
this.openDrawLine = !this.openDrawLine;
|
},
|
openDrawPointMethod() {
|
if (this.openDrawLine) {
|
this.openDrawLine = false;
|
$("#openDrawLine").hide();
|
}
|
//打开画点
|
$("#openDrawPoiton").toggle(100);
|
this.openDrawPoint = !this.openDrawPoint;
|
},
|
getTypeSelectedPoint() {
|
this.tipTitle = "单击左键选择位置";
|
let that = this;
|
let isHaveOne = false;
|
$("#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传最终数据
|
// console.log(res.coordinate);//输出点
|
that.addIconMarker(res.coordinate);
|
isHaveOne = true;
|
}
|
});
|
this.map.addInteraction(this.draw);
|
}
|
|
},
|
addIconMarker(intlat) {
|
let that = this;
|
that.carAddlayer.getSource().clear();
|
let iconFeature = new OlFeature({
|
geometry: new OlGeomPoint(intlat) //绘制图形(点)
|
});
|
iconFeature.setStyle(
|
new OlStyleStyle({
|
image: new OlStyleIcon({
|
scale: 0.5,
|
//控制标注图片和文字之间的距离
|
// anchor: [0.2, 1],
|
//标注样式的起点位置
|
// anchorOrigin: "top-right",
|
//X方向单位:分数
|
// anchorXUnits: "10px",
|
//Y方向单位:像素
|
// anchorYUnits: "-10px",
|
//偏移起点位置的方向
|
offset: [0, 5],
|
offsetOrigin: "bottom",
|
//透明度
|
opacity: 1,
|
//图片路径
|
// src: require("img/logos.png"),
|
src: "img/dingwei/dingwei5.png"
|
})
|
})
|
);
|
|
// 加载多个点用addFeatures,一个点用addFeature
|
that.carAddlayer.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;
|
}
|
},
|
goTudefault(x, y) {
|
this.view.setCenter([x, y]);
|
this.view.setZoom(14.5);
|
},
|
init3D(val) {
|
// window.ol3d.setEnabled(val);
|
},
|
addEntitys(item, icon, scale, name, type) {
|
const iconFeature = new Feature({
|
geometry: new Point([Number(item.LGTD), Number(item.LTTD)]),
|
name: name,
|
attributes: item
|
});
|
|
const iconStyle = new Style({
|
|
image: new Icon({
|
scale: scale,
|
opacity: 1,
|
src: icon
|
})
|
});
|
|
iconFeature.setStyle(iconStyle);
|
|
this[type].getSource().addFeature(iconFeature);
|
},
|
|
addLines(ringId) {
|
var that = this;
|
if (ringId != null && ringId != "") {
|
$.ajax({
|
url: "api/routeIn/routein/selectList",
|
type: "post",
|
data: {
|
id: ringId
|
},
|
dataType: "JSON",
|
success: function(data) {
|
that.peopleLineAddlayer.getSource().clear();
|
var entityData = "";
|
var entityArr = [];
|
entityData = data.data[0].routeInfo.match(/\(([^)]*)\)/);
|
|
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 view = ol2d.getView();
|
view.setCenter([
|
lineCoords[Math.ceil(entityArr.length / 2)][0],
|
lineCoords[Math.ceil(entityArr.length / 2)][1]
|
]);
|
view.setZoom(14.5);
|
|
// 要素
|
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: "rgb(252, 94, 32)",
|
width: 5
|
})
|
})
|
);
|
that.peopleLineAddlayer.getSource().addFeature(feature_LineString);
|
that.butTitle = "修改绘画";
|
},
|
error: function(data) {
|
// 请求失败函数
|
console.log(data);
|
}
|
});
|
}
|
},
|
addNewLine() {
|
this.map = ol2d;
|
|
// 添加一个绘制的线使用的layer
|
this.drawLayer = new VectorLayer({
|
//layer所对应的source
|
source: new Vector()
|
});
|
//把layer加入到地图中
|
this.map.addLayer(this.drawLayer);
|
},
|
getTypeSelected() {
|
this.beginDraw = true;
|
this.draw && this.map.removeInteraction(this.draw);
|
this.peopleLineAddlayer.getSource().clear();
|
//再根据typeSelect的值绘制新的Interaction
|
this.addInteraction();
|
},
|
stopDraw() {
|
this.showTip = false;
|
this.draw && this.map.removeInteraction(this.draw);
|
this.beginDraw = false;
|
this.tipTitle = "";
|
this.$store.commit("setRotesData", ""); //用vuex传最终数据
|
},
|
setTipPosition(x, y, n, m) {
|
this.position.w = x + n;
|
this.position.h = y + m;
|
},
|
addInteraction() {
|
this.tipTitle = "单击左键或右键开始绘画";
|
$("#map")
|
.off("mousemove")
|
.mousemove(function(e) {
|
if (!that.showTip) {
|
that.showTip = true;
|
}
|
that.setTipPosition(e.offsetX, e.offsetY, 10, 10);
|
});
|
|
this.coordinates = [];
|
let value = this.typeSelected,
|
that = this;
|
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 = "可继续,或选择最终位置双击结束";
|
// console.log(res.coordinate_, 123456);
|
},
|
coordinateOver: function(res) {
|
// 结束绘画 处理数据
|
// console.log(that.doData(that.coordinates));
|
let d = that.doData(that.coordinates);
|
that.addLinesDraw(d);
|
// console.log(d);
|
// console.log(that.$store);
|
that.$store.commit("setRotesData", d); //用vuex传最终数据
|
// that.coordinatesStr = that.doData(that.coordinates);
|
}
|
});
|
this.map.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;
|
that.peopleLineAddlayer.getSource().clear();
|
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 view = ol2d.getView();
|
view.setCenter([
|
lineCoords[Math.ceil(entityArr.length / 2)][0],
|
lineCoords[Math.ceil(entityArr.length / 2)][1]
|
]);
|
view.setZoom(14.5);
|
|
// 要素
|
// var lineCoords = [[featureInfo.lineString[0][0],featureInfo.lineString[0][0]],[featureInfo.lineString(0),featureInfo.lineString(0)]];
|
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: "rgb(252, 94, 32)",
|
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;
|
}
|
}
|
}
|
};
|
</script>
|
|
<style scoped lang="scss">
|
#map {
|
position: relative;
|
}
|
</style>
|