1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
| <template> <div class="btn-wrapper"> <span style="color: red"> 上一个定位的点 {{ prePoint }}</span> <button class="button" v-for="(item, index) in data" :key="index" @click="handleMoveToTarget(item)" > 定位到目标 item </button> </div> <div id="map" class="map"></div> </template>
<script lang="ts" setup> import { onMounted, ref } from 'vue' import 'ol/ol.css' import { Map, View, Feature } from 'ol' import { XYZ, Vector as SourceVector } from 'ol/source' import TileLayer from 'ol/layer/Tile' import { Vector as LayerVector } from 'ol/layer' import { Style, Icon, Text, Fill, Stroke } from 'ol/style' import { Point } from 'ol/geom'
const data = [ [158.6, 29.8], [159, 30.5], [159.4, 30.9], [160.2, 31.8], [160.5, 32.2], [162.4, 33.4], [164, 34.3], [166.2, 35.7], [167.6, 36.3] ]
const map = ref<Map>() const prePoint = ref<number[]>([])
const customLayer = new LayerVector({ source: new SourceVector() })
const setItem = (point: number[], color = '#000') => { const anchor = new Feature({ name: `[${point}]`, geometry: new Point(point) })
anchor.setStyle( new Style({ image: new Icon({ src: '/logo.png', width: 60, height: 60, color: color }), text: new Text({ textAlign: 'center', textBaseline: 'middle', font: 'normal 12px 微软雅黑', text: anchor.get('name'), fill: new Fill({ color: '#fff' }), stroke: new Stroke({ color: '#999', width: 1 }) }), stroke: new Stroke({ color: '#fff', width: 100 }) }) ) ;(anchor.on as any)('click', (e: any) => { console.log(e, 'e') })
customLayer.getSource()?.addFeature(anchor) }
const init = () => { map.value = new Map({ target: 'map', layers: [ new TileLayer({ source: new XYZ({ url: 'http://wprd0{1-4}.is.autonavi.com/appmaptile?lang=zh_cn&size=1&style=7&x={x}&y={y}&z={z}', wrapX: false }) }), customLayer ], view: new View({ projection: 'EPSG:4326', center: [158.6, 29.8], zoom: 8, maxZoom: 18, minZoom: 1 }) })
data.forEach(item => { setItem(item) })
map.value?.on('click', function (this: any, e) { console.log(e.pixel) console.log(this)
this.forEachFeatureAtPixel(e.pixel, function (feature: any) { feature.dispatchEvent && feature.dispatchEvent({ type: 'click', event: e }) }) }) }
const handleMoveToTarget = (point: number[]) => { if (prePoint.value.length) { setItem(prePoint.value) }
let zoom = map.value?.getView().getZoom() as number const duration = 2000 map.value?.getView().animate( { center: point, duration: duration }, e => { console.log(e, 'callback-1') } )
map.value?.getView().animate( { zoom: zoom - 1, duration: duration / 2 }, { zoom: zoom, duration: duration / 2 }, e => { console.log(e, 'callback-2') setItem(point, '#0f0')
prePoint.value = point } ) }
onMounted(init) </script>
<style lang="scss"> .map { height: 100vh; width: 100%; background-color: #000; }
.btn-wrapper { width: 100%; position: fixed; left: 150px; top: 30px; z-index: 2;
.button + .button { margin-left: 20px; } } </style>
|