使用element-ui+腾讯地图实现地址选择

4 篇文章 1 订阅
1 篇文章 0 订阅

最近项目需要在后台使用地图选择,所以就使用element-ui+腾讯地图写了一个简单的地图选择的组件。

效果如下
在这里插入图片描述

一、主要步骤

  • 新建一个组件
  • 引入qqmap(因为腾讯没有针对于vue的地图api,所以使用第三方搭建好的) npm install qqmap
  • 编写页面
  • 编写事件

二、组件代码

<template>
// 使用的是抽屉弹出
    <el-drawer
            :wrapperClosable="false"
            size="40%"
            title="位置选择"
            :visible.sync="showStatus"
            direction="rtl"
            width="600px">
            // 搜索的表单
        <el-form style="margin-left: 20px" class="searchForm" size="small" :model="searchFrom">
            <el-row :gutter="5">
                <el-col :span="10">
                    <el-form-item prop="name">
                        <el-input clearable placeholder="请输入搜索位置信息"
                                  v-model="searchFrom.name"
                                  name="name"/>
                    </el-form-item>
                </el-col>
                <el-col :span="6">
                    <el-button icon="el-icon-search" type="primary" size="mini"
                               @click="searchAddress">搜索位置
                    </el-button>
                </el-col>
            </el-row>
        </el-form>
        // 地图显示 注意id必须要加。因为下面会指定id加载地图
        <div id="mapContainer" style="width:100%;height:300px;"></div>
        // 附近地点显示
        <el-table
                highlight-current-row
                :data="nearPointList"
                max-height="300"
                style="width: 100%">
            <el-table-column
                    prop="name"
                    label="附近地点名称">
            </el-table-column>
            <el-table-column
                    fixed="right"
                    label="操作"
                    width="100">
                <template slot-scope="scope">
                    <el-button
                            @click.native.prevent="selectAddress(scope.row)"
                            type="text"
                            size="small">
                        确认选择
                    </el-button>
                </template>
            </el-table-column>
        </el-table>
    </el-drawer>
</template>
<script>
// 引入qqmap
    import maps from 'qqmap'

    export default {
        name: "index",
        data() {
            return {
                rootAddress: '',
                searchFrom: {name: ''},
                nearPointList: [],
                showStatus: false,
                map: '',
                data: '',
                markersArray: [],
            }
        },
        mounted() {
        // 初始化地图
            this.initMap()
        },
        methods: {
        // 搜索地址
            searchAddress() {
                if (!this.searchFrom.name) {
                    this.$message.error('未输入搜索内容')
                    return
                }
                this.setLocationByAddress(this.rootAddress + ',' + this.searchFrom.name)
            },
            // 初始化地图
            initMap() {
                let that = this
                maps.init('4TWBZ-2XDO4-G27U2-D5MK4-GS5F6-Y2F5H', () => {
                    let latLon = new qq.maps.LatLng(26.326248944008693, 116.35539315640926)
                    let myOpts = {
                        zoom: 14,
                        center: latLon,
                        mapTypeId: qq.maps.MapTypeId.ROADMAP
                    }
                    that.map = new qq.maps.Map(
                        document.getElementById('mapContainer'),
                        myOpts
                    )
                    qq.maps.event.addListener(that.map, 'click', function (event) {
                        that.setLocationByLatLng(event.latLng.getLat(), event.latLng.getLng())
                    })
                })
                // 经纬度解析类回调函数
                that.geocoder = new qq.maps.Geocoder({
                    complete: function (result) {
                        that.nearPointList = result.detail.nearPois
                        that.map.setCenter(result.detail.location);
                        let marker = new qq.maps.Marker({
                            map: that.map,
                            position: result.detail.location
                        });
                        that.markersArray.push(marker);
                        if (that.markersArray.length > 1) {
                            for (let i = 0; i < that.markersArray.length - 1; i++) {
                                that.markersArray[i].setMap(null);// 清除标记
                            }
                        }
                    }
                });
                // 地址解析回调函数
                that.geocoderLocation = new qq.maps.Geocoder({
                    complete: function (result) {
                        // 查找附近的点
                        let latLng = new qq.maps.LatLng(result.detail.location.lat, result.detail.location.lng);
                        that.geocoder.getAddress(latLng);
                    }
                });
            },
            // 选择地址时间
            selectAddress(row) {
                this.$emit("on-select", this.rootAddress, row.name, row.latLng.lat, row.latLng.lng)
                this.showStatus = false
            },
            // 父组件调用显示抽屉的方法
            show() {
                this.initMap()
                this.showStatus = true
            },
            // 父组件设置初始显示 省市区数据
            setLocationByAddress(address) {
                this.rootAddress = address
                this.geocoderLocation.getLocation(address);
            },
            // 父组件设置初始显示 经纬度数据
            setLocationByLatLng(lat, lng) {
                let latLng = new qq.maps.LatLng(lat, lng);
                this.geocoder.getAddress(latLng);
            }

        }
    }
</script>

<style scoped>

</style>

三、使用方法

  • 引入组件
 import mapSelect from '@/components/mapSelect'
   export default {
        name: "index",
        components: {
            mapSelect
        }
     }
  • 编写组件
// on-select是选择之后的回调函数  结合下面的地址选择后的回调函数使用
// ref 是为了可以选择当前组件的标识 结合下面的 this.$refs.ms 使用
 <mapSelect ref="ms" @on-select="addressSelectHandler"></mapSelect>
  • 显示地图选择
  this.$refs.ms.show()
 //根据省市区设置初始值
 this.$refs.ms.setLocationByAddress('福建省、厦门市、思明区')
 // 根据经纬度设置初始值
// this.$refs.ms.setLocationByLatLng(39.98174, 116.30631)
  • 地址选择后的回调函数
   addressSelectHandler(rootAddress, address, lat, lng) {
                this.addressSelect = rootAddress + "," + address + '=====lat:' + lat + ',lng:' + lng
                // 省市区数据  如 ‘福建省、厦门市、思明区’
                console.log(rootAddress)
                // 选择地址 如:‘观音上商务区4号楼’
                console.log(address)
                // 经度
                console.log(lat)
                // 纬度
                console.log(lng)
            },
  • 2
    点赞
  • 15
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值