凸显出当前区域 需要当前地方的json数据 这个可以在阿里的这个阿里
看下效果图
遮盖层的逃命都是可以调的
引入 下面一段代码
import sx from "@/views/json/sx1.json"; // 下载的json
import GeoJSON from "ol/format/GeoJSON"; // ol的一些方法
import Polygon, { fromExtent } from "ol/geom/Polygon";
import LinearRing from 'ol/geom/LinearRing';
<template>
<div class="container">
<div id="vue-openlayers" class="map-x"></div>
<div
id="info-box"
class="info-box"
style="width: 100px; height: 100px"
></div>
<div id="canv" style="width: 100px; height: 100px"></div>
</div>
</template>
<script>
import "ol/ol.css";
import { Map, View, style, Feature, geom, Overlay } from "ol";
import TileLayer from "ol/layer/Tile";
import XYZ from "ol/source/XYZ";
import { Vector as VectorSource } from "ol/source";
import VectorLayer from "ol/layer/Vector";
import { Point, LineString } from "ol/geom";
import { Style, Icon, Stroke, Text, Fill } from "ol/style";
import logo from "@/assets/logo.png";
import * as ol from "ol";
import "ol-ext/dist/ol-ext.css";
import sx from "@/views/json/sx1.json";
import GeoJSON from "ol/format/GeoJSON";
import Polygon, { fromExtent } from "ol/geom/Polygon";
import LinearRing from 'ol/geom/LinearRing';
export default {
name: "FirstMap",
data() {
return {
map: null,
draw: null,
maskLayer: null,
logo,
layers: [],
};
},
methods: {
initMap() {
let that = this;
// 将图标样式应用到点要素
const features = [];
const point = new Point([108.56, 34.15]); // 修改坐标格式
const feature = new Feature({
geometry: point,
custom: { data: "123", type: "icon" },
type: "icon",
});
feature.setStyle([
new Style({
image: new Icon({
crossOrigin: "anonymous",
src: this.logo,
// size: [40, 40],
scale: 0.2, // 图标缩放比例
}),
}),
]);
features.push(feature);
//设置地图的数据源
const source = new VectorSource({
features,
});
let markLayerPoints = new VectorLayer({
source: source,
});
let map = new Map({
target: "vue-openlayers",
layers: [
new TileLayer({
source: new XYZ({
url: "https://gdtc.shipxy.com/tile.g?l=en&m=d&z={z}&x={x}&y={y}",
}),
}),
markLayerPoints, // 确保图层顺序正确
// vectorLayers,
],
view: new View({
projection: "EPSG:4326",
center: [108.56, 34.15], // 修改中心坐标格式
zoom: 6,
}),
});
this.map = map;
that.showSFArea() // 蓝色蒙层
},
// 移除图层方法
removeFun(layerId) {
const that = this;
const selArr = that.map.getLayers().getArray(); // 获取所有图层
selArr.map((item, index) => {
if (item.values_?.id == layerId) {
// 移除图层
that.map.removeLayer(selArr[index]);
}
});
},
// 创建蒙层,凸显区域
showSFArea() {
const initLayer = new VectorLayer({
name: "blueLayer",
// zIndex: 1,
// opacity: 0.6,
source: new VectorSource(),
style: new Style({
fill: new Fill({
color: "rgba(3, 44, 79, 1)",
}),
stroke: new Stroke({
color: "rgba(0,0,0,0.8)",
width: 1
})
}),
});
this.map.addLayer(initLayer);
this.addConver(initLayer);
},
// 添加遮罩
addConver(converLayer) {
let codeJson = sx;
var fts = new GeoJSON().readFeatures(codeJson);
const ft = fts[0];
const converGeom = this.erase(ft.getGeometry());
const convertFt = new Feature({
geometry: converGeom,
});
converLayer.getSource().addFeature(convertFt);
},
// 擦除操作,生产遮罩范围
erase(geom) {
const extent = [-180, -90, 180, 90];
const polygonRing = fromExtent(extent);
const coords = geom.getCoordinates();
coords.forEach((coord) => {
const linearRing = new LinearRing(coord[0]);
polygonRing.appendLinearRing(linearRing);
});
return polygonRing;
},
},
mounted() {
this.initMap();
},
};
</script>
<style scoped lang="scss">
.input {
position: fixed;
top: 10px;
right: 10px;
border-radius: 10px;
background: #fff;
display: flex;
flex-direction: column;
padding: 5px;
padding-bottom: 10px;
> * {
margin-top: 10px;
display: flex;
align-items: center;
}
}
</style>
<style scoped lang="scss">
.container {
position: relative;
.btn {
position: absolute;
left: 4%;
top: 1%;
}
}
#vue-openlayers {
width: 100vw;
height: 100vh;
}
h3 {
line-height: 40px;
}
/* 隐藏信息盒子的初始样式 */
#info-box {
display: none;
position: absolute;
background: white;
border: 1px solid black;
padding: 10px;
border-radius: 5px;
font-size: 14px;
pointer-events: none; /* 防止信息盒子影响鼠标事件 */
}
</style>