You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
311 lines
9.6 KiB
311 lines
9.6 KiB
<template> |
|
<div class="g-map-wrapper"> |
|
<div id="g-container" :style="{ width: '100%', height: '100%' }" /> |
|
<div |
|
class="g-action-panle" |
|
:style="{ right: drawVisible ? '316px' : '16px' }" |
|
> |
|
<div class="g-action-item" @click="draw('pin', true)"> |
|
<a-button type="primary">PIN</a-button> |
|
</div> |
|
<div class="g-action-item" @click="draw('polyline', true)"> |
|
<a-button type="primary">Line</a-button> |
|
</div> |
|
<div class="g-action-item" @click="draw('polygon', true)"> |
|
<a-button type="primary">Poly</a-button> |
|
</div> |
|
<div v-if="mouseMode" class="g-action-item" @click="draw('off', false)"> |
|
<a-button type="primary" danger>X</a-button> |
|
</div> |
|
</div> |
|
</div> |
|
</template> |
|
|
|
<script lang="ts"> |
|
import { computed, defineComponent, onMounted, reactive, ref, watch } from 'vue' |
|
import { |
|
generateLineContent, |
|
generatePointContent, |
|
generatePolyContent |
|
} from '../utils/map-layer-utils' |
|
import { postElementsReq } from '/@/api/layer' |
|
import { MapDoodleType, MapElementEnum } from '/@/constants/map' |
|
import { useGMapManage } from '/@/hooks/use-g-map' |
|
import { useGMapCover } from '/@/hooks/use-g-map-cover' |
|
import { useMouseTool } from '/@/hooks/use-mouse-tool' |
|
import { getApp } from '/@/root' |
|
import { useMyStore } from '/@/store' |
|
import { GeojsonCoordinate } from '/@/types/map' |
|
import { MapDoodleEnum } from '/@/types/map-enum' |
|
import { PostElementsBody } from '/@/types/mapLayer' |
|
import { uuidv4 } from '/@/utils/uuid' |
|
import { gcj02towgs84, wgs84togcj02 } from '/@/vendors/coordtransform' |
|
|
|
export default defineComponent({ |
|
name: 'GMap', |
|
props: {}, |
|
setup () { |
|
const useMouseToolHook = useMouseTool() |
|
const useGMapManageHook = useGMapManage() |
|
|
|
const mouseMode = ref(false) |
|
const store = useMyStore() |
|
const state = reactive({ |
|
currentType: '', |
|
coverIndex: 0 |
|
}) |
|
const shareId = computed(() => { |
|
return store.state.layerBaseInfo.share |
|
}) |
|
const defaultId = computed(() => { |
|
return store.state.layerBaseInfo.default |
|
}) |
|
const drawVisible = computed(() => { |
|
return store.state.drawVisible |
|
}) |
|
watch( |
|
() => store.state.wsEvent, |
|
newData => { |
|
const useGMapCoverHook = useGMapCover() |
|
const event = newData |
|
let exist = false |
|
if (Object.keys(event.mapElementCreat).length !== 0) { |
|
console.log(event.mapElementCreat) |
|
const ele = event.mapElementCreat |
|
store.state.Layers.forEach(layer => { |
|
layer.elements.forEach(e => { |
|
if (e.id === ele.id) { |
|
exist = true |
|
console.log('true') |
|
} |
|
}) |
|
}) |
|
if (exist === false) { |
|
setLayers({ |
|
id: ele.id, |
|
name: ele.name, |
|
resource: ele.resource |
|
}) |
|
|
|
updateCoordinates('wgs84-gcj02', ele) |
|
useGMapCoverHook.init2DPin( |
|
ele.name, |
|
ele.resource.content.geometry.coordinates, |
|
ele.resource.content.properties.color, |
|
{ |
|
id: ele.id, |
|
name: ele.name |
|
} |
|
) |
|
} |
|
|
|
store.state.wsEvent.mapElementCreat = {} |
|
} |
|
if (Object.keys(event.mapElementUpdate).length !== 0) { |
|
console.log(event.mapElementUpdate) |
|
console.log('该功能还未实现,请开发商自己增加') |
|
store.state.wsEvent.mapElementUpdate = {} |
|
} |
|
if (Object.keys(event.mapElementDelete).length !== 0) { |
|
console.log(event.mapElementDelete) |
|
console.log('该功能还未实现,请开发商自己增加') |
|
store.state.wsEvent.mapElementDelete = {} |
|
} |
|
}, |
|
{ |
|
deep: true |
|
} |
|
) |
|
|
|
function draw (type: MapDoodleType, bool: boolean) { |
|
state.currentType = type |
|
useMouseToolHook.mouseTool(type, getDrawCallback) |
|
mouseMode.value = bool |
|
} |
|
onMounted(() => { |
|
const app = getApp() |
|
useGMapManageHook.globalPropertiesConfig(app) |
|
}) |
|
function getDrawCallback ({ obj }) { |
|
switch (state.currentType) { |
|
case MapDoodleEnum.PIN: |
|
postPinPositionResource(obj) |
|
break |
|
case MapDoodleEnum.POLYLINE: |
|
postPolylineResource(obj) |
|
break |
|
case MapDoodleEnum.POLYGON: |
|
postPolygonResource(obj) |
|
break |
|
default: |
|
break |
|
} |
|
} |
|
async function postPinPositionResource (obj) { |
|
const req = getPinPositionResource(obj) |
|
setLayers(req) |
|
updateCoordinates('gcj02-wgs84', req) |
|
const result = await postElementsReq(shareId.value, req) |
|
obj.setExtData({ id: req.id, name: req.name }) |
|
store.state.coverList.push(obj) |
|
// console.log(store.state.coverList) |
|
} |
|
async function postPolylineResource (obj) { |
|
const req = getPolylineResource(obj) |
|
setLayers(req) |
|
updateCoordinates('gcj02-wgs84', req) |
|
const result = await postElementsReq(shareId.value, req) |
|
obj.setExtData({ id: req.id, name: req.name }) |
|
store.state.coverList.push(obj) |
|
// console.log(store.state.coverList) |
|
} |
|
async function postPolygonResource (obj) { |
|
const req = getPoygonResource(obj) |
|
setLayers(req) |
|
updateCoordinates('gcj02-wgs84', req) |
|
const result = await postElementsReq(shareId.value, req) |
|
obj.setExtData({ id: req.id, name: req.name }) |
|
store.state.coverList.push(obj) |
|
// console.log(store.state.coverList) |
|
} |
|
|
|
function getPinPositionResource (obj) { |
|
const position = obj.getPosition() |
|
const resource = generatePointContent(position) |
|
const name = obj._originOpts.title |
|
const id = uuidv4() |
|
return { |
|
id, |
|
name, |
|
resource |
|
} |
|
} |
|
function getPolylineResource (obj) { |
|
const path = obj.getPath() |
|
const resource = generateLineContent(path) |
|
const { name, id } = getBaseInfo(obj._opts) |
|
return { |
|
id, |
|
name, |
|
resource |
|
} |
|
} |
|
function getPoygonResource (obj) { |
|
const path = obj.getPath() |
|
const resource = generatePolyContent(path) |
|
const { name, id } = getBaseInfo(obj._opts) |
|
return { |
|
id, |
|
name, |
|
resource |
|
} |
|
} |
|
function getBaseInfo (obj) { |
|
const name = obj.title |
|
const id = uuidv4() |
|
return { name, id } |
|
} |
|
function setLayers (resource: PostElementsBody) { |
|
const layers = store.state.Layers |
|
const layer = layers.find(item => item.id.includes(shareId.value)) |
|
// layer.id = 'private_layer' + uuidv4() |
|
// layer?.elements.push(resource) |
|
if (layer?.elements) { |
|
;(layer?.elements as any[]).push(resource) |
|
} |
|
console.log('layers', layers) |
|
store.commit('SET_LAYER_INFO', layers) |
|
} |
|
function updateCoordinates (transformType: string, element: any) { |
|
const geoType = element.resource?.content.geometry.type |
|
const type = element.resource?.type as number |
|
if (element.resource) { |
|
if (MapElementEnum.PIN === type) { |
|
const coordinates = element.resource?.content.geometry |
|
.coordinates as GeojsonCoordinate |
|
if (transformType === 'wgs84-gcj02') { |
|
const transResult = wgs84togcj02( |
|
coordinates[0], |
|
coordinates[1] |
|
) as GeojsonCoordinate |
|
element.resource.content.geometry.coordinates = transResult |
|
} else if (transformType === 'gcj02-wgs84') { |
|
const transResult = gcj02towgs84( |
|
coordinates[0], |
|
coordinates[1] |
|
) as GeojsonCoordinate |
|
element.resource.content.geometry.coordinates = transResult |
|
} |
|
} else if (MapElementEnum.LINE === type && geoType === 'LineString') { |
|
const coordinates = element.resource?.content.geometry |
|
.coordinates as GeojsonCoordinate[] |
|
if (transformType === 'wgs84-gcj02') { |
|
coordinates.forEach(coordinate => { |
|
coordinate = wgs84togcj02( |
|
coordinate[0], |
|
coordinate[1] |
|
) as GeojsonCoordinate |
|
}) |
|
} else if (transformType === 'gcj02-wgs84') { |
|
coordinates.forEach(coordinate => { |
|
coordinate = gcj02towgs84( |
|
coordinate[0], |
|
coordinate[1] |
|
) as GeojsonCoordinate |
|
}) |
|
} |
|
element.resource.content.geometry.coordinates = coordinates |
|
} else if (MapElementEnum.LINE === type && geoType === 'Polygon') { |
|
const coordinates = element.resource?.content.geometry |
|
.coordinates[0] as GeojsonCoordinate[] |
|
|
|
if (transformType === 'wgs84-gcj02') { |
|
coordinates.forEach(coordinate => { |
|
coordinate = wgs84togcj02( |
|
coordinate[0], |
|
coordinate[1] |
|
) as GeojsonCoordinate |
|
}) |
|
} else if (transformType === 'gcj02-wgs84') { |
|
coordinates.forEach(coordinate => { |
|
coordinate = gcj02towgs84( |
|
coordinate[0], |
|
coordinate[1] |
|
) as GeojsonCoordinate |
|
}) |
|
} |
|
element.resource.content.geometry.coordinates = [coordinates] |
|
} |
|
} |
|
} |
|
return { |
|
draw, |
|
mouseMode, |
|
drawVisible |
|
} |
|
} |
|
}) |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
.g-map-wrapper { |
|
height: 100%; |
|
width: 100%; |
|
.g-action-panle { |
|
position: absolute; |
|
top: 16px; |
|
right: 16px; |
|
.g-action-item { |
|
padding-top: 8px; |
|
} |
|
} |
|
} |
|
</style> |
|
<style lang="scss"> |
|
.amap-logo { |
|
opacity: 0; |
|
} |
|
.amap-copyright { |
|
opacity: 0; |
|
} |
|
</style>
|
|
|