显示效果

代码如下 复制粘贴即可

//html   显示经纬度 和搜索  地图<el-row><el-col :span="12"><el-form-item label="经度" prop="longitude"><el-input style="width: 200px" disabled v-model="form.longitude"></el-input> </el-form-item></el-col><el-col :span="12"><el-form-item label="纬度" prop="latitude"><el-input style="width: 200px" disabled v-model="form.latitude"></el-input> </el-form-item></el-col></el-row><el-form-item><div class="map-box"><div class="map" ref="map" style="height: 300px" /><div class="map-search"><el-input v-model="searchValue" placeholder="请输入要检索的位置信息" /><el-button @click="searchAddress(searchValue)" type="primary">搜索</el-button></div></div></el-form-item>
<script>
export default {data(){return{searchValue: '', //地图搜索form:{longitude:'',latitude:'',}}},created(){if (this.script) return;this.script = document.createElement('script');this.script.type = 'text/javascript';this.script.src = `//map.qq.com/api/gljs?v=1.exp&libraries=service&key=GZ5BZ-OAXED-DNM4H-HMVLD-5BIXO-XFBMX`;document.head.appendChild(this.script);this.script.onload = () => {window.initMap = this.initMap;this.$nextTick(() => {this.initMap();});};},method:{// 地图initMap() {// 搜索类this.searchEr = new window.TMap.service.Search({ pageSize: 10 });// 地图主类this.map = new window.TMap.Map(this.$refs.map, {backgroundColor: '#f7f7f7',mapStyleId: 'style1',zoom: 12,mapTypeControlOptions: {mapTypeIds: [],},draggableCursor: 'crosshair',center: new window.TMap.LatLng(28.616202, 115.942693),});// 图层类this.markerLayer = new window.TMap.MultiMarker({map: this.map,geometries: [],});// 地址逆解析this.geocoder = new window.TMap.service.Geocoder();const setMarker = () => {const latlng = new window.TMap.LatLng(this.form.latitude, this.form.longitude);this.markerLayer.setGeometries([]);let geometries = this.markerLayer.getGeometries();geometries.push({id: '-1',position: latlng,});this.markerLayer.updateGeometries(geometries);};this.map.on('click', (e) => {this.form.longitude = e.latLng.getLng(); // 经度this.form.latitude = e.latLng.getLat(); // 纬度setMarker();this.getAddressFormat();});if (this.form.longitude) {this.map.setCenter(new window.TMap.LatLng(this.form.latitude, this.form.longitude));setMarker();}},// 地图搜索searchAddress(keyword = '') {if (!keyword) return;this.markerLayer.setGeometries([]);this.searchEr.searchRectangle({keyword,bounds: this.map.getBounds(),}).then((result) => {const { location = {} } = result.data[0] || {};const { lat = 28.616202, lng = 115.942693 } = location;this.map.setCenter(new window.TMap.LatLng(lat, lng));result.data.forEach((item, index) => {let geometries = this.markerLayer.getGeometries();// 点标注数据数组geometries.push({id: String(index),position: item.location,});// 绘制地点标注this.markerLayer.updateGeometries(geometries);});});},getAddressFormat() {const { longitude, latitude } = this.form;this.geocoder.getAddress({location: new window.TMap.LatLng(latitude, longitude),}).then((res) => {const {formatted_addresses: { recommend = '' },} = res.result || {};console.log(recommend, 'recommend');this.form.hotelDetailAddress = recommend;console.log(this.form);});},}
}
</script>
//样式
<style>.map-box {position: relative;.map-search {z-index: 1000;display: flex;position: absolute;top: 20px;left: 20px;width: 350px;button {border-radius: 0;}}
}
.icons {display: flex;align-items: center;justify-content: space-between;
}
.time {margin-top: 15px;width: 100%;font-size: 12px;flex-wrap: wrap;height: 70%;
}
</style>

VUE2.0 插入腾讯地图(有经纬度和搜索功能以及标记’)相关推荐

  1. vue2.0引入腾讯地图

    百度很多东西,然后我没找到腾讯地图在VUE2.0里面的引用.于是根据找的其他地图引用资料进行尝试.步骤如下. 首先在src里面建立了TMap.js的文件,内容如下: export function T ...

  2. vue2.0引用腾讯地图

    开始 注册腾讯位置服务账号 vue引入js 创建map.vue 显示结果 注册腾讯位置服务账号 入门指南 vue引入js 项目根目录下的index.html里引入 <script charset ...

  3. java调用腾讯地图根据经纬度获取位置信息

    这是java提交经纬度信息,然后获取该经纬度所在省市区的一个方法,话不多说直接上代码: package com.lmj.util;import net.sf.json.JSONObject; impo ...

  4. java腾讯地图根据经纬度获取具体位置

    腾讯地图 java腾讯地图根据经纬度获取具体位置 java腾讯地图根据经纬度获取具体位置 package com.fengdi.lianmeng.util.tencent;import com.fen ...

  5. 地域微信平台自媒体,原创视频如何插入腾讯地图

    地域微信平台自媒体创业故事. 2015年,30岁的我没钱没房,心中总有一个互联网创业梦,在看到很多地域自媒体如开花一般的成长,抱着试试水的态度,开启了我的创业模式,其实互联网创业门槛很高,但是如果做一 ...

  6. vue使用腾讯地图获取经纬度和逆解析获取详细地址

    vue使用腾讯地图获取经纬度和逆解析获取详细地址 示例 必须在腾讯api中申请自己的key 打开这个webservice用来逆解析详细地址 下面是代码 1 , html创建放地图的容器 <div ...

  7. 腾讯地图发送定位-打开定位功能

    用到的是腾讯地图API,主要的功能: 1.选择地址发送(地图选址组件 https://lbs.qq.com/tool/component-picker.html) 2.实时地址静态图(https:// ...

  8. php实现多条件查找分页,Yii2.0框架实现带分页的多条件搜索功能示例

    本文实例讲述了Yii2.0框架实现带分页的多条件搜索功能.分享给大家供大家参考,具体如下: 方法一 在控制器中 public function actionShow(){ $where['title' ...

  9. vue版本--腾讯地图demo,可搜索关键字和经纬度,显示地图和搜索结果列表

    腾讯地图demo,改正确的key即可用 <!DOCTYPE html> <html><head><meta charset="UTF-8" ...

最新文章

  1. Elasticsearch yellow 意味着主分片可用,副本不可用
  2. 在ML中缺乏数据可是个大问题,亲测有效的5种方法帮您解决
  3. [转] MySQL和MongoDB设计实例对比
  4. 练习:卷积和池化过程中注意事项
  5. 【Spring源码分析】Bean加载流程概览
  6. 超级强大的心理定律~~!你可以变成你想要的样子!~
  7. vue 后端返回图片乱码处理方法
  8. 统计面要素中点要素的个数.
  9. python分布式开发容易吗_Python能实现分布式的进程吗?
  10. 如何建立开发环境可以让开发人员快捷开发出模型的原型
  11. 导出快吗_技巧分享:常用的BOOX电纸书操作,这些技能你都会吗?
  12. 自定义快捷键整理 - Windows
  13. android expandablelistview横向,ExpandableListView的使用多级列表
  14. 华为测试岗实习生面试回顾
  15. 24位真彩色图片取摸方法(用于WS2812显示)
  16. Ural 2045 Richness of words
  17. pg安装部署linux_Linux下postgresql数据库部署与配置
  18. windows一段时间后发现C盘满了如何检查并清理
  19. Ubuntu下搭建python环境
  20. 事务注解错误范例org.apache.ibatis.session.defaults.DefaultSqlSession

热门文章

  1. LeetCode 题集:排序
  2. 信息学奥赛一本通:1034:计算三角形面积
  3. Android 主题栏,信息栏,深色信息栏(更改手机顶部显示字体/图标颜色为深色)
  4. MSSQL注入语句总结
  5. zookeeper 选取主 leader
  6. 网页设计师谈网页设计中的色彩理论
  7. Lesson32_HTMLCSS
  8. nginx rtmp 服务建立 全套代码,含直播、播放、录制、转码
  9. 2022-08-20-网易笔试题
  10. 儿童手表到底安全不全(转自乌云网)