123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468 |
- <template>
- <Dialog type="sm" title="请选择事发地点" customShow @close="handleClose" @confirm="submit">
- <el-form ref="queryFormRef" :model="form" :rules="rules">
- <div class="form">
- <div class="line">
- <div class="form-item" style="margin-right: 20px">
- <div class="text">详细地址</div>
- <el-input v-model="form.address" class="custom-input" placeholder="请输入" />
- <div v-if="searchPop" class="scroll_box">
- <div style="height: 60px; line-height: 60px">
- <span style="font-weight: bold">搜索结果列表</span>
- <i class="el-icon-close" style="float: right; font-size: 20px; cursor: pointer" @click="closeSearchList()" />
- </div>
- <el-scrollbar class="scroll" style="height: 600px">
- <div v-for="(item, index) in searchList" v-show="searchList.length" :key="index" class="item" @click="handlePanTo(index)">
- <el-image class="img" :src="item.img" :alt="item.name" lazy>
- <template #error>
- <div class="image-slot">
- <i class="el-icon-picture-outline"></i>
- </div>
- </template>
- </el-image>
- <div>
- <div class="text">{{ item.name }}</div>
- <div>{{ item.address }}</div>
- </div>
- </div>
- <div v-show="!searchList.length" class="empty" style="text-align: center">没有搜索到内容</div>
- </el-scrollbar>
- <el-pagination
- background
- small
- :hide-on-single-page="true"
- layout="prev, pager, next"
- :total="total"
- :page-size="pageSize"
- :current-page="pageNum"
- style="margin-top: 10px"
- @current-change="handleChangePage"
- >
- </el-pagination>
- </div>
- </div>
- <div class="common-btn-primary" @click="handleInput(0)">搜索</div>
- </div>
- <div class="line">
- <div class="form-item">
- <div class="text">经度</div>
- <el-input v-model="form.longitude" class="custom-input" placeholder="请输入" />
- </div>
- <div class="form-item" style="margin-left: 80px">
- <div class="text">详细地址</div>
- <el-input v-model="form.latitude" class="custom-input" placeholder="请输入" />
- </div>
- </div>
- </div>
- </el-form>
- <div ref="containerRef" class="map_box">
- <div id="positionMap">
- <div id="map" class="map" :style="{ width: width, height: height }"></div>
- </div>
- </div>
- </Dialog>
- </template>
- <script setup name="PositionMap">
- import AMapLoader from '@amap/amap-jsapi-loader';
- import { useRouter } from 'vue-router';
- import { addEvent } from '@/api/emergencyCommandMap/JointDuty';
- const props = defineProps({
- visible: {
- type: Boolean,
- default: () => {
- return false;
- }
- }
- });
- const router = useRouter();
- const emits = defineEmits(['update:visible']);
- // 地图对象
- let map = null;
- let amap = {};
- let marker = null; //地图上的点标记
- let contextMenu = null;
- let lnglatPosition = ref([]); //选中的新坐标
- let rules = reactive({
- address: [{ required: true, message: '详细地址不能为空', trigger: 'blur' }],
- longitude: [{ required: true, message: '经度不能为空', trigger: 'blur' }],
- latitude: [{ required: true, message: '纬度不能为空', trigger: 'blur' }]
- });
- let pageNum = ref(1);
- let pageSize = ref(10);
- let total = ref(0);
- let searchList = ref([]);
- let searchPop = ref(false);
- let placeSearch;
- // 提交事件时间改为当前时间currentTime
- const now = new Date();
- const year = now.getFullYear();
- const month = String(now.getMonth() + 1).padStart(2, '0');
- const day = String(now.getDate()).padStart(2, '0');
- const hours = String(now.getHours()).padStart(2, '0');
- const minutes = String(now.getMinutes()).padStart(2, '0');
- const seconds = String(now.getSeconds()).padStart(2, '0');
- const currentTime = `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
- let form = reactive({
- address: '',
- longitude: '',
- latitude: '',
- event_title: '',
- event_type: '',
- event_level: '',
- event_status: '1',
- event_time: currentTime,
- report_time: '1970-01-01 00:00:00',
- deaths: '0',
- injuries: '0',
- missing: '0',
- event_source: '',
- event_description: '',
- casualties: '',
- del_flag: '9' // 临时事件
- });
- let geocoder = {};
- let width = ref('100%');
- let height = ref('100%');
- watch(
- () => props.visible,
- (n) => {
- if (n) {
- nextTick(() => {
- initMap();
- });
- }
- },
- {
- immediate: true
- }
- );
- onMounted(() => {
- window.addEventListener('resize', handleResize);
- });
- onUnmounted(() => {
- if (!!map) {
- map.off('rightclick');
- map.destroy();
- map = null;
- }
- window.removeEventListener('resize', handleResize);
- });
- function handleInput(flag) {
- if (!form.address) return;
- if (!flag) {
- //搜索
- total.value = 0;
- pageNum.value = 1;
- }
- if (!placeSearch) {
- placeSearch = new amap.PlaceSearch({
- pageSize: pageSize.value, // 每页条数,默认10,范围1-50
- pageIndex: pageNum.value, // 页码
- extensions: 'all' // 默认base,返回基本地址信息;all:返回详细信息
- });
- }
- searchPop.value = true;
- placeSearch.setPageIndex(pageNum.value);
- placeSearch.search(form.address, (status, result) => {
- // console.log(result.poiList.pois, 'result')
- if (!!result.poiList && result.poiList.pois && result.poiList.pois.length > 0) {
- let arr = [];
- const pois = result.poiList.pois;
- total.value = result.poiList ? result.poiList.count : 0;
- arr = pois.map((item) => {
- return {
- name: item.name,
- address: item.address,
- img: item.photos[0]?.url,
- lnglat: [item.location.lng, item.location.lat]
- };
- });
- searchList.value = arr;
- } else {
- total.value = 0;
- searchList.value = [];
- }
- });
- }
- function handleChangePage(newNum) {
- if (!searchPop.value) return;
- pageNum.value = newNum;
- handleInput(1);
- }
- function closeSearchList() {
- searchPop.value = false;
- searchList.value = [];
- total.value = 0;
- pageNum.value = 1;
- }
- // 地图中心的平移至指定点位置
- function handlePanTo(index) {
- let lnglat = searchList.value[index].lnglat;
- form.address = searchList.value[index].name + '(' + searchList.value[index].address + ')';
- form.longitude = lnglat[0];
- form.latitude = lnglat[1];
- map.panTo(lnglat);
- setMarks(lnglat);
- closeSearchList();
- }
- const initMap = () => {
- let position = [110.925175, 21.678955];
- AMapLoader.load({
- key: '30d3d8448efd68cb0b284549fd41adcf', // 申请好的Web端开发者Key,首次调用 load 时必填
- version: '2.0', // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
- plugins: ['AMap.PlaceSearch', 'AMap.ContextMenu', 'AMap.PolygonEditor', 'AMap.Geocoder'] // 插件列表
- }).then((res) => {
- AMap = res;
- map = new AMap.Map('map', {
- viewMode: '3D', //是否为3D地图模式
- center: position,
- zoom: 15
- });
- amap = AMap;
- geocoder = new AMap.Geocoder({
- // city 指定进行编码查询的城市,支持传入城市名、adcode 和 citycode
- city: '010'
- });
- // 创建右键菜单
- ContextMenu();
- map.on('rightclick', handleRightclick);
- handleResize();
- map.on('complete', () => {
- setMarks(position);
- });
- });
- };
- function ContextMenu() {
- contextMenu = new AMap.ContextMenu();
- contextMenu.addItem(
- '选择标点',
- () => {
- form.longitude = lnglatPosition.value[0];
- form.latitude = lnglatPosition.value[1];
- contextMenu.close();
- let lnglat = [form.longitude, form.latitude];
- geocoder.getAddress(lnglat, (status, result) => {
- if (status === 'complete' && result.info === 'OK') {
- form.address = result.regeocode.formattedAddress;
- }
- });
- setMarks(lnglat);
- },
- 1
- );
- }
- // 右键事件
- function handleRightclick(e) {
- let lnglat = [e.lnglat.getLng(), e.lnglat.getLat()];
- contextMenu.open(map, e.lnglat);
- lnglatPosition.value = lnglat;
- }
- function setMarks(lnglat) {
- //添加标记
- if (marker) map.remove(marker);
- marker = new AMap.Marker({
- position: lnglat,
- icon: new AMap.Icon({
- size: new AMap.Size(22, 28), //图标所处区域大小
- imageSize: new AMap.Size(22, 28), //图标大小
- image: '//a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png'
- }),
- anchor: 'bottom-center',
- offset: new AMap.Pixel(0, 0)
- });
- marker.setMap(map);
- }
- function handleClose() {
- emits('update:visible', false);
- }
- let queryFormRef = ref();
- let containerRef = ref();
- function handleResize() {
- const containerWidth = containerRef.value.clientWidth * (document.body.clientWidth / 8960);
- const containerHeight = containerRef.value.clientHeight * (document.body.clientHeight / 2520);
- width.value = containerWidth + 'px';
- height.value = containerHeight + 'px';
- map.resize();
- }
- function submit() {
- queryFormRef.value.validate((valid) => {
- if (valid) {
- console.log('提交数据', form);
- addEvent(form).then((res) => {
- router.push({
- path: '/emergencyCommandMap',
- query: {
- event_id: res.data
- }
- });
- });
- }
- });
- }
- </script>
- <style lang="scss" scoped>
- .map_box {
- position: relative;
- background: rgba(0, 0, 0, 0.3);
- margin-bottom: 20px;
- flex: 1;
- :deep(.amap-menu) {
- color: #000;
- }
- }
- .map {
- width: 100%;
- height: 100%;
- }
- .search {
- width: 50%;
- position: absolute;
- right: 2%;
- top: 10px;
- background: #fff;
- padding: 8px 8px;
- border-radius: 3px;
- display: flex;
- }
- .btn {
- margin-left: 10px;
- }
- .scroll_box {
- width: calc(100% - 165px);
- background: #0a2c5c;
- position: absolute;
- left: 165px;
- top: 80px;
- z-index: 9;
- padding: 20px;
- border-radius: 3px;
- .close {
- position: absolute;
- right: 10px;
- top: 10px;
- cursor: pointer;
- font-size: 40px;
- }
- :deep(.el-pagination__total) {
- color: #a7ccdf;
- font-size: 32px;
- }
- :deep(.el-pagination) {
- .btn-next,
- .btn-prev {
- background-color: transparent;
- border: none;
- .el-icon {
- font-size: 22px;
- color: #a7ccdf;
- }
- }
- .el-pager li {
- width: 64px;
- height: 64px;
- line-height: 64px;
- text-align: center;
- font-size: 32px;
- color: #a7ccdf;
- background-color: #0e3064;
- border: 1px solid #0c57a7;
- margin: 0 6px;
- &:hover {
- background-color: #038dff;
- border: 1px solid #038dff;
- }
- }
- .el-pager li.is-active {
- background-color: #038dff;
- border: 1px solid #038dff;
- }
- }
- }
- .scroll {
- width: 100%;
- .item {
- display: flex;
- font-size: 32px;
- cursor: pointer;
- padding: 8px;
- &:hover {
- background-color: #102e76;
- }
- .img {
- width: 80px;
- height: 80px;
- min-width: 80px;
- margin-right: 15px;
- }
- :deep(.image-slot) {
- width: 100%;
- height: 100%;
- background-color: #f5f7fa;
- text-align: center;
- line-height: 50px;
- }
- :deep(.el-icon-picture-outline) {
- font-size: 32px;
- }
- .text {
- color: #3385ff;
- margin-bottom: 6px;
- }
- }
- }
- :deep(.el-scrollbar__wrap) {
- overflow-x: hidden !important;
- }
- :deep(.is-horizontal) {
- display: none;
- }
- .empty {
- margin: 20px 0;
- }
- :deep(.dialog-content) {
- flex: 1;
- padding: 10px 0;
- display: flex;
- flex-direction: column;
- .map_box {
- overflow: hidden;
- }
- }
- .form {
- .line {
- width: 100%;
- display: flex;
- align-items: center;
- margin-bottom: 30px;
- .form-item {
- flex: 1;
- display: flex;
- align-items: center;
- position: relative;
- .text {
- font-size: 36px;
- color: #eaf3fc;
- white-space: nowrap;
- margin-right: 20px;
- }
- }
- }
- }
- </style>
|