| | |
| | | import { markRaw, ref } from 'vue'; |
| | | import { MarkerOverlay } from './overlay/marker'; |
| | | import { Logger } from '../logger/Logger'; |
| | | import axios from 'axios'; |
| | | import WKT from 'ol/format/WKT'; |
| | | import { getCurrentPosition } from '/@/utils/brower'; |
| | | |
| | | export type LangType = 'zh_cn' | 'en'; |
| | | export const enum GaoDeSourceType { |
| | |
| | | |
| | | activeSourceType: Ref<GaoDeSourceType> = ref(GaoDeSourceType.Vector); |
| | | interactLayer: VectorLayer<VectorSource<Feature<Geometry>>, Feature<Geometry>> = null; |
| | | |
| | | searchHighlightLayer: VectorLayer<VectorSource<Feature<Geometry>>, Feature<Geometry>> = null; |
| | | /** @description 当前激活状态 feature */ |
| | | activeFeature: ShallowRef<FeatureLike> = ref(null); |
| | | private emit(eventName: OLEventType, ...args: any[]) { |
| | |
| | | this.listenMapClick(); |
| | | this.addBasicControl(); |
| | | this.initEvent(); |
| | | } |
| | | |
| | | gaodeApiKey = 'eea6302da02576fe3f3dd3ba1fbe0a04'; |
| | | |
| | | async locationCurrent() { |
| | | const position = await getCurrentPosition(); |
| | | if (!position) return; |
| | | const { latitude, longitude } = position; |
| | | |
| | | return; |
| | | const url = `https://restapi.amap.com/v5/ip/location?key=${this.gaodeApiKey}`; |
| | | const response = await axios.get(url); |
| | | } |
| | | |
| | | async gaodeAddressSearch(address) { |
| | | this.gaodeApiKey = 'eea6302da02576fe3f3dd3ba1fbe0a04'; |
| | | // const url = `https://restapi.amap.com/v3/assistant/inputtips?output=json&city=010&keywords=${address}=${this.gaodeApiKey}`; |
| | | // 搜索 POI |
| | | const url = `https://restapi.amap.com/v3/place/text?keywords=${address}&city=fuzhou&offset=20&page=1&key=${this.gaodeApiKey}&extensions=all `; |
| | | // 搜索 POI 2.0 |
| | | // const url = `https://restapi.amap.com/v5/place/text?keywords=${address}&city=beijing&offset=20&page=1&key=${this.gaodeApiKey}&extensions=all |
| | | |
| | | const response = await axios.get(url); |
| | | return response.data; |
| | | } |
| | | |
| | | displaySearchResult(resultList) { |
| | | // resultList = [ |
| | | // { |
| | | // OTYPE: 'WDM_JUNCTIONS', |
| | | // ONAME: 'd7513894-38d2-48b5-884a-f9a16fe1298a', |
| | | // WKT: 'SRID=3857;POINT(13280607.09109455 3009899.678848996)', |
| | | // }, |
| | | // { |
| | | // OTYPE: 'WDM_JUNCTIONS', |
| | | // ONAME: 'f2cbc0f8-de84-449e-9996-8b9425ea8438', |
| | | // WKT: 'SRID=3857;POINT(13274453.007984176 3006699.498741431)', |
| | | // }, |
| | | // { |
| | | // OTYPE: 'WDM_JUNCTIONS', |
| | | // ONAME: '2a08d246-639e-4169-862f-38bda3e98677', |
| | | // WKT: 'SRID=3857;POINT(13285466.77807223 3016023.513009545)', |
| | | // }, |
| | | // { |
| | | // OTYPE: 'WDM_JUNCTIONS', |
| | | // ONAME: '1bd4ea12-3a4c-4908-a73c-c5a8e14d20eb', |
| | | // WKT: 'SRID=3857;POINT(13282712.61192139 3016897.156892525)', |
| | | // }, |
| | | // { |
| | | // OTYPE: 'WDM_JUNCTIONS', |
| | | // ONAME: 'e6d0c5cb-00f5-47aa-846f-0705de983364', |
| | | // WKT: 'SRID=3857;POINT(13288425.224571886 3006456.3830214837)', |
| | | // }, |
| | | // { |
| | | // OTYPE: 'WDM_JUNCTIONS', |
| | | // ONAME: '6f83eff7-9e7b-46f8-8b1e-f18a69a98587_A', |
| | | // WKT: 'SRID=3857;POINT(13287645.018084045 3006696.595101201)', |
| | | // }, |
| | | // { |
| | | // OTYPE: 'WDM_JUNCTIONS', |
| | | // ONAME: 'acc43afb-7c59-44f2-a36d-0d22eb1b4594_A', |
| | | // WKT: 'SRID=3857;POINT(13286166.586277477 3009094.237136173)', |
| | | // }, |
| | | // { |
| | | // OTYPE: 'WDM_JUNCTIONS', |
| | | // ONAME: '8b449ce6-26ba-4c10-b18c-366ded424ec4', |
| | | // WKT: 'SRID=3857;POINT(13282290.543926762 3016028.715200386)', |
| | | // }, |
| | | // { |
| | | // OTYPE: 'WDM_JUNCTIONS', |
| | | // ONAME: 'a668fe7e-0d08-4cff-9045-1c27d14b9b61', |
| | | // WKT: 'SRID=3857;POINT(13278933.218610007 3014782.279195062)', |
| | | // }, |
| | | // { |
| | | // OTYPE: 'WDM_JUNCTIONS', |
| | | // ONAME: '6ccacce7-c65d-42b8-b5be-4c15ff648f99', |
| | | // WKT: 'SRID=3857;POINT(13275888.24189473 3002108.7952906396)', |
| | | // }, |
| | | // ]; |
| | | const first = resultList[0]; |
| | | let features = []; |
| | | if (first) { |
| | | const firstWktStr = first.WKT; |
| | | const srid = firstWktStr.match(/SRID=(\d+);/)?.[1]; |
| | | const standardWktStrList = resultList.map((item) => item.WKT.replace(/SRID=\d+;/, '')); |
| | | features = standardWktStrList.map((wktStr) => { |
| | | return new WKT().readFeature(wktStr, { |
| | | dataProjection: `EPSG:${srid}`, |
| | | // featureProjection: `EPSG:${srid}`, |
| | | }); |
| | | }); |
| | | } |
| | | this.highlightSearch(features); |
| | | } |
| | | |
| | | initEvent() { |
| | |
| | | this.emit('featureChange', feature, layer); |
| | | } |
| | | if (feature) { |
| | | console.log('🚀 ~ feature:', feature); |
| | | const otype = feature.get('otype'); |
| | | console.log('🚀 ~ otype:', otype); |
| | | const oname = feature.get('oname'); |
| | | console.log('🚀 ~ oname:', oname); |
| | | const geometryType = feature.getGeometry().getType(); |
| | | console.log('🚀 ~ geometryType:', geometryType); |
| | | const properties = feature.getProperties(); |
| | | console.log('🚀 ~ properties:', properties); |
| | | } |
| | | this.displayFeatureInfo(feature); |
| | | this.highlightSelect(feature); |
| | | this.activeFeature.value = feature; |
| | | }); |
| | | } |
| | |
| | | this.map.addLayer(vectorTileLayer); |
| | | return vectorTileLayer; |
| | | } |
| | | |
| | | // highlightFeature = null; |
| | | displayFeatureInfo(feature) { |
| | | highlightFeature(feature) { |
| | | const highlightStyle = { |
| | | // Point: new Style({ |
| | | // // image: new Circle({ |
| | |
| | | }, |
| | | }); |
| | | } |
| | | } |
| | | |
| | | private searchHighlightStyle = { |
| | | // Point: new Style({ |
| | | // // image: new Circle({ |
| | | // // radius: 5, |
| | | // // fill: new Fill({ color: `blue` }), |
| | | // // }), |
| | | // image: new Circle({ |
| | | // radius: 13, |
| | | // stroke: new Stroke({ |
| | | // color: `blue`, |
| | | // width: 3, |
| | | // }), |
| | | // }), |
| | | // }), |
| | | // Point:this.getPointHighLightStyle.call(this,feature), |
| | | Point: new Style({ |
| | | // image: new Circle({ |
| | | // radius: 5, |
| | | // fill: new Fill({ color: `blue` }), |
| | | // }), |
| | | image: new Circle({ |
| | | radius: 13, |
| | | stroke: new Stroke({ |
| | | color: `yellow`, |
| | | width: 3, |
| | | }), |
| | | }), |
| | | }), |
| | | LineString: new Style({ |
| | | stroke: new Stroke({ |
| | | color: `yellow`, |
| | | width: 5, |
| | | }), |
| | | }), |
| | | Polygon: new Style({ |
| | | stroke: new Stroke({ |
| | | color: `yellow`, |
| | | width: 5, |
| | | }), |
| | | // fill: new Fill({ |
| | | // color: `rgba(0, 0, 255, 0.1)`, |
| | | // }), |
| | | }), |
| | | }; |
| | | |
| | | private selectHighlightStyle = { |
| | | // Point: new Style({ |
| | | // // image: new Circle({ |
| | | // // radius: 5, |
| | | // // fill: new Fill({ color: `blue` }), |
| | | // // }), |
| | | // image: new Circle({ |
| | | // radius: 13, |
| | | // stroke: new Stroke({ |
| | | // color: `blue`, |
| | | // width: 3, |
| | | // }), |
| | | // }), |
| | | // }), |
| | | // Point:this.getPointHighLightStyle.call(this,feature), |
| | | Point: new Style({ |
| | | // image: new Circle({ |
| | | // radius: 5, |
| | | // fill: new Fill({ color: `blue` }), |
| | | // }), |
| | | image: new Circle({ |
| | | radius: 13, |
| | | stroke: new Stroke({ |
| | | color: `blue`, |
| | | width: 3, |
| | | }), |
| | | }), |
| | | }), |
| | | LineString: new Style({ |
| | | stroke: new Stroke({ |
| | | color: `blue`, |
| | | width: 5, |
| | | }), |
| | | }), |
| | | Polygon: new Style({ |
| | | stroke: new Stroke({ |
| | | color: `blue`, |
| | | width: 5, |
| | | }), |
| | | // fill: new Fill({ |
| | | // color: `rgba(0, 0, 255, 0.1)`, |
| | | // }), |
| | | }), |
| | | }; |
| | | |
| | | highlightSelect(feature) { |
| | | // 创建高亮图层 |
| | | if (!this.interactLayer) { |
| | | this.interactLayer = new VectorLayer({ |
| | | source: new VectorSource(), |
| | | map: this.map, |
| | | style: (feature) => { |
| | | const type = feature.getGeometry().getType(); |
| | | return this.selectHighlightStyle[type]; |
| | | }, |
| | | }); |
| | | } |
| | | |
| | | // 设置高亮要素 |
| | | if (feature !== this.activeFeature.value) { |
| | |
| | | } |
| | | } |
| | | |
| | | private preSearchHighlightFeatures: Feature[] = []; |
| | | highlightSearch(features) { |
| | | if (!Array.isArray(features)) { |
| | | features = [features]; |
| | | } |
| | | // 创建高亮图层 |
| | | if (!this.searchHighlightLayer) { |
| | | this.searchHighlightLayer = new VectorLayer({ |
| | | source: new VectorSource(), |
| | | map: this.map, |
| | | style: (feature) => { |
| | | const type = feature.getGeometry().getType(); |
| | | return this.searchHighlightStyle[type]; |
| | | }, |
| | | }); |
| | | } |
| | | if (this.preSearchHighlightFeatures && this.preSearchHighlightFeatures.length > 0) { |
| | | this.searchHighlightLayer.getSource().removeFeatures(this.preSearchHighlightFeatures); |
| | | } |
| | | |
| | | // 设置高亮要素 |
| | | if (features && features.length > 0) { |
| | | this.searchHighlightLayer.getSource().addFeatures(features); |
| | | } |
| | | this.preSearchHighlightFeatures = features; |
| | | } |
| | | getWMTS = () => { |
| | | const projection = getProjection('EPSG:3857'); |
| | | const projectionExtent = projection.getExtent(); |