|
@@ -7,6 +7,7 @@ import * as proj from 'ol/proj'
|
|
|
import * as interaction from 'ol/interaction'
|
|
|
import * as coordinate from 'ol/coordinate'
|
|
|
import * as format from "ol/format";
|
|
|
+import {fromExtent} from 'ol/geom/Polygon';
|
|
|
// @ts-ignore
|
|
|
import LocationImg from '../images/location.png'
|
|
|
import {ElMessage} from "element-plus";
|
|
@@ -16,6 +17,14 @@ export let locationTooltipElement
|
|
|
export default function Location ({map, position = null, wkt = null, zoom = null, color = '#039ff3'}) {
|
|
|
try {
|
|
|
const feat: any = new format.WKT().readFeature(position ? `POINT(${position[0]} ${position[1]})` : wkt)
|
|
|
+ const mapViewExtent = map.getView().get('extent')
|
|
|
+ if (mapViewExtent) {
|
|
|
+ const poly = fromExtent(mapViewExtent)
|
|
|
+ if (!poly.intersectsCoordinate(feat.getGeometry().getCoordinates())) {
|
|
|
+ ElMessage.warning('超出范围,无法定位该位置!')
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
let _source
|
|
|
const realLayer = map.getLayers().getArray().filter(v => v.get(layerFlag[0]) === layerFlag[1])
|
|
|
if (realLayer[0]) {
|