更新记录
1.0.2(2025-08-26) 下载此版本
说明修改
1.0.1(2025-08-26) 下载此版本
多场景使用,附近的数据(商家/人...)多标记点显示。 ①多标记点图文。可选中标记点获取当前标记点信息; ②移动地图,显示中心点附近的数据 ③地图放大缩小 ④回到当前的位置 ......
平台兼容性
uni-app(4.08)
| Vue2 | Vue3 | Chrome | Safari | app-vue | app-nvue | Android | iOS | 鸿蒙 |
|---|---|---|---|---|---|---|---|---|
| - | - | - | - | - | - | - | - | - |
| 微信小程序 | 支付宝小程序 | 抖音小程序 | 百度小程序 | 快手小程序 | 京东小程序 | 鸿蒙元服务 | QQ小程序 | 飞书小程序 | 快应用-华为 | 快应用-联盟 |
|---|---|---|---|---|---|---|---|---|---|---|
| - | - | - | - | - | - | - | - | - | - | - |
uni-app x(4.08)
| Chrome | Safari | Android | iOS | 鸿蒙 | 微信小程序 |
|---|---|---|---|---|---|
| - | - | - | - | - | - |
##### ### 小程序腾讯地图多标记点组件
描述:
多场景使用,附近的数据(商家/人…)多标记点显示。
①多标记点图文。可选中标记点获取当前标记点信息;
②移动地图,显示中心点附近的数据
③地图放大缩小
④回到当前的位置
……
可自行修改为自己合适的….
使用
<template><!--腾讯地图插件--><mapView v-if="isShow" :markersArr="markerArr" :myLcat="myLocation" @chooseMarker="getChooseMarker" @moveMapView="getMapCenterLoca"></mapView></template><script setup>import { nextTick, onMounted, ref } from 'vue';import mapView from '@/components/my-map/my-map.vue'const markerArr = ref([]);//标记点,可动态获取const isShow = ref(false);//const myLocation = ref({});//用户发送到后台请求对应的数据onMounted(()=>{getMapMarkersList();nextTick(()=>{isShow.value = true;})getMyLocation();});//获取地图移动的中心坐标const getMapCenterLoca = (e)=>{console.log("中心坐标:",e);};//获取选中的标记const getChooseMarker = (e) =>{console.log("选中的气泡标记:",e);};//获取当前所在的位置const getMyLocation =()=>{//获得当前的位置uni.getLocation({type: 'gcj02', //返回国测局坐标success(e) {// console.log(e,"我的位置")myLocation.value = e;},fail(e) {console.log('失败', e);}})}//获取位置中心范围内的数据const getMapMarkersList = () =>{markerArr.value = [{id:1,longitude:'115.851002', //经度latitude:'28.689684',//纬度iconPath:'/static/ad/ad01.jpg',//缩略图width:40,height: 40,title:'商家1',address:'商家标记地址1',alpha: 1, //透明度callout: { //自定义标记点上方的气泡窗口 点击有效content: '商家标记点1',//文本color: '#ffffff',//文字颜色fontSize: 12,//文本大小borderRadius: 5,//边框圆角padding:7,bgColor: '#3f94fd',//背景颜色display: 'ALWAYS',//常显},},{id:2,longitude:'115.880356',latitude:'28.643896',iconPath:'/static/ad/ad02.jpg',width:40,height: 40,title:'商家2',address:'商家标记地址2',alpha: 1,callout: { //气泡窗口content:'商家标记点2',color: '#ffffff',fontSize: 12,borderRadius: 5,padding:7,bgColor: '#3f94fd',display: 'ALWAYS',},},{id:3,longitude:'115.902672',latitude:'28.671311',iconPath:'/static/ad/ad03.jpg',width:40,height: 40,title:'商家3',address:'商家标记地址3',alpha: 1,callout: { //气泡窗口content: '商家标记点3',color: '#ffffff',fontSize: 12,borderRadius: 5,padding:7,bgColor: '#3f94fd',display: 'ALWAYS',},},{id:4,longitude:'115.881386',latitude:'28.682456',iconPath:'/static/ad/ad02.jpg',width:40,height: 40,title:'商家4',address:'商家标记地址4',alpha: 1,callout: { //气泡窗口content: '商家标记点4',color: '#ffffff',fontSize: 12,borderRadius: 5,padding:7,bgColor: '#3f94fd',display: 'ALWAYS',},},{id:5,longitude:'115.854435',latitude:'28.677787',iconPath:'/static/ad/ad01.jpg',width:40,height: 40,title:'商家5',address:'商家标记地址5',alpha: 1,callout: { //气泡窗口content: '商家标记点5',color: '#ffffff',fontSize: 12,borderRadius: 5,padding:7,bgColor: '#3f94fd',display: 'ALWAYS',},},{id:6,longitude:'115.848255',latitude:'28.660617',iconPath:'/static/ad/ad02.jpg',width:40,height: 40,title:'商家6',address:'商家标记地址6',alpha: 1,callout: { //气泡窗口content: '商家标记点6',color: '#ffffff',fontSize: 12,borderRadius: 5,padding:7,bgColor: '#3f94fd',display: 'ALWAYS',},},{id:7,longitude:'115.849972',latitude:'28.670407',iconPath:'/static/ad/ad03.jpg',width:40,height: 40,title:'商家7',address:'商家标记地址7',alpha: 1,callout: { //气泡窗口content: '商家标记点7',color: '#ffffff',fontSize: 12,borderRadius: 5,padding:7,bgColor: '#3f94fd',display: 'ALWAYS',},},{id:8,longitude:'115.900612',latitude:'28.661671',iconPath:'/static/ad/ad01.jpg',width:40,height: 40,title:'商家8',address:'商家标记地址8',alpha: 1,callout: { //气泡窗口content: '商家标记点8',color: '#ffffff',fontSize: 12,borderRadius: 5,padding:7,bgColor: '#3f94fd',display: 'ALWAYS',},},];}</script><style></style>

收藏人数:
下载插件并导入HBuilderX
赞赏(0)
下载 32
赞赏 0
下载 11513660
赞赏 1813
赞赏
京公网安备:11010802035340号