123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- <template>
- <div class="easy-map-ol">
- <div class="map" ref="ref_easyMapOl"/>
- <div class="easy-map_ol-info_tips">
- <div class="easy-map_ol-info-scaleLine" ref="ref_easyMap_scaleLine"></div>
- <div class="easy-map_ol-info-info">
- <div @click="controlMousePosition.format = !controlMousePosition.format">经度:{{controlMousePosition.format ? controlMousePosition.formatLongitude : controlMousePosition.longitude}}</div>
- <div @click="controlMousePosition.format = !controlMousePosition.format">纬度:{{controlMousePosition.format ? controlMousePosition.formatLatitude : controlMousePosition.latitude}}</div>
- <div>层级:
- <div class="easy-map_ol-info-zoom">
- <div class="easy-map_ol-info-zoom-button easy-map_ol-info-zoom-button_min __hover" @click="zoomChange(false)">-</div>
- <div class="easy-map_ol-info-zoom-num">{{Math.floor(interactionZoom)}}</div>
- <div class="easy-map_ol-info-zoom-button easy-map_ol-info-zoom-button_max __hover" @click="zoomChange(true)">+</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script lang="ts">
- import {
- defineComponent,
- onMounted,
- ref,
- toRefs,
- reactive,
- watch,
- getCurrentInstance,
- ComponentInternalInstance,
- computed,
- nextTick, onActivated,
- } from "vue";
- import { useStore } from "vuex";
- import * as ol from 'ol'
- import * as style from 'ol/style'
- import * as layer from 'ol/layer'
- import * as source from 'ol/source'
- import * as geom from 'ol/geom'
- import * as proj from 'ol/proj'
- import * as interaction from 'ol/interaction'
- import * as coordinate from 'ol/coordinate'
- import * as control from 'ol/control'
- import InitMapInfoClass from "./initMapInfo";
- export default defineComponent({
- name: "",
- components: {
- },
- props: {
- baseMapLayers: { default: () => [] },
- baseMapView: {},
- },
- setup(props, { emit }) {
- const store = useStore();
- const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties;
- const state = reactive({
- controlMousePosition: {
- longitude: <any>null,
- latitude: <any>null,
- format: true,
- formatLongitude: <any>null,
- formatLatitude: <any>null,
- },
- interactionZoom: props.baseMapView.zoom,
- realBaseLayers: null,
- });
- const easyMapOl = ref()
- const ref_easyMapOl = ref()
- const ref_easyMap_olMousePosition = ref()
- const ref_easyMap_olZoom = ref()
- const ref_easyMap_scaleLine = ref()
- const initMap = () => {
- state.realBaseLayers = props.baseMapLayers.map(v => InitMapInfoClass.isInternet ? InitMapInfoClass.initInternet(v) : InitMapInfoClass.initBaseLayer(v))
- easyMapOl.value = new ol.Map({
- target: ref_easyMapOl.value,
- layers: [
- new layer.Group({
- _easyMapOl_layerGroupType: 'base',
- layers: state.realBaseLayers,
- zIndex: 1
- }),
- ],
- view: new ol.View(props.baseMapView),
- controls: control.defaults({
- attribution: false,
- rotate: false,
- zoom: false,
- }).extend([
- new control.MousePosition({
- target: ref_easyMap_olMousePosition.value,
- coordinateFormat: (e) => {
- state.controlMousePosition.longitude = e[0].toFixed(6)
- state.controlMousePosition.latitude = e[1].toFixed(6)
- const f = coordinate.toStringHDMS(e, 0).split(' ')
- state.controlMousePosition.formatLatitude = `${f[0]} ${f[1]} ${f[2]} ${f[3]}`
- state.controlMousePosition.formatLongitude = `${f[4]} ${f[5]} ${f[6]} ${f[7]}`
- return null
- },
- placeholder: ''
- }),
- new control.Zoom({
- target: ref_easyMap_olZoom.value,
- }),
- new control.ScaleLine({
- target: ref_easyMap_scaleLine.value,
- bar: true
- })
- ]),
- interactions: interaction.defaults({
- doubleClickZoom: false
- })
- })
- easyMapOl.value.getView().on('change:resolution', e => {
- state.interactionZoom = e.target.getZoom()
- emit('olZoomChange', state.interactionZoom)
- })
- const defaultBaseLayer = state.realBaseLayers.filter(v => v.getVisible())[0]
- setLayerView(defaultBaseLayer)
- emit('olMapLoad', easyMapOl.value)
- easyMapOl.value.on('contextmenu', e => {
- window.event.returnValue = false
- if (window?.event?.shiftKey) {
- const str = document.createElement('input')
- str.setAttribute('value', `POINT(${e.coordinate[0]} ${e.coordinate[1]})`)
- document.body.appendChild(str)
- str.select()
- document.execCommand('copy')
- document.body.removeChild(str)
- }
- })
- }
- const zoomChange = (flag) => {
- state.interactionZoom = flag ? state.interactionZoom + 1 : state.interactionZoom - 1
- if (state.interactionZoom > easyMapOl.value.getView().getMaxZoom()) {
- state.interactionZoom = easyMapOl.value.getView().getMaxZoom()
- } else if (state.interactionZoom < easyMapOl.value.getView().getMinZoom()) {
- state.interactionZoom = easyMapOl.value.getView().getMinZoom()
- }
- easyMapOl.value.getView().setZoom(state.interactionZoom)
- }
- const baseLayersMap = computed(() => {
- const map = new Map()
- easyMapOl.value?.getLayers().getArray().filter(v => v.get('_easyMapOl_layerGroupType') === 'base')[0].getLayers().getArray().forEach(v => {
- map.set(v.get('_easyMapOl_layerName'), v)
- })
- return map
- })
- const switchBaseLayer = (layerName) => {
- baseLayersMap.value.forEach((v, k) => {
- if (layerName === k) {
- setLayerView(v)
- v.setVisible(true)
- } else {
- v.setVisible(false)
- }
- })
- }
- const setLayerView = (_layer) => {
- easyMapOl.value.getView().setMaxZoom(_layer.get('_maxZoom'))
- easyMapOl.value.getView().setMinZoom(_layer.get('_minZoom'))
- }
- const refresh = () => {
- easyMapOl.value.updateSize();
- easyMapOl.value.render()
- }
- onMounted(() => {
- nextTick(() => {
- initMap()
- setTimeout(() => {
- refresh()
- })
- })
- })
- return {
- ...toRefs(state),
- ref_easyMapOl,
- ref_easyMap_olMousePosition,
- ref_easyMap_olZoom,
- ref_easyMap_scaleLine,
- easyMapOl,
- zoomChange,
- switchBaseLayer,
- baseLayersMap,
- refresh,
- }
- },
- });
- </script>
- <style scoped lang="scss">
- .easy-map-ol {
- width: 100%;
- height: 100%;
- position: relative;
- .map {
- width: 100%;
- height: 100%;
- background-color: #bfdbf3;
- }
- ::v-deep(.ol-zoom) {
- display: none;
- }
- ::v-deep(.ol-scale-bar-inner) {
- position: absolute;
- bottom: 1%;
- left: 1%;
- &>div>div:nth-child(2) {
- .ol-scale-singlebar {
- border-left: 2px solid #807A7A;
- }
- }
- &>div>div:nth-child(5) {
- .ol-scale-singlebar {
- border-right: 2px solid #807A7A;
- }
- }
- .ol-scale-step-text {
- padding-bottom: 20px;
- font-size: 12px;
- transform: scale(0.8);
- position: absolute;
- bottom: -5px;
- font-size: 12px;
- z-index: 11;
- color: #000000;
- width: max-content;
- text-shadow: -2px 0 #ffffff,
- 0 2px #ffffff,
- 2px 0 #ffffff,
- 0 -2px #ffffff;
- }
- .ol-scale-singlebar {
- border: 0;
- background-color: transparent !important;
- border-bottom: 2px solid #807A7A;
- height: 10px;
- }
- .ol-scale-step-marker {
- display: none;
- }
- }
- .easy-map_ol-info_tips {
- position: absolute;
- z-index: 1;
- right: 10px;
- bottom: 10px;
- display: flex;
- .easy-map_ol-info-info {
- background-color: rgba(255, 255, 255, 0.7);
- border-radius: 8px;
- color: #333333;
- font-size: 12px;
- padding: 6px;
- >div {
- display: flex;
- align-items: center;
- }
- .easy-map_ol-info-zoom {
- display: flex;
- align-items: center;
- .easy-map_ol-info-zoom-num {
- line-height: 1;
- padding: 1px 10px;
- border: 1px solid rgba(51, 51, 51, 0.51);
- }
- .easy-map_ol-info-zoom-button {
- padding: 0 3px;
- &.easy-map_ol-info-zoom-button_max {
- color: #356de7;
- }
- }
- }
- }
- .easy-map_ol-info-scaleLine {
- width: 180px;
- }
- }
- }
- </style>
|