当前位置: 首页 > Web前端 > vue.js

点标记示例2:地图渲染多个标记点及其文字标签

时间:2023-03-31 21:17:21 vue.js

//动态获取数据resres.forEach(item)=>{varmarker=newAMap.Marker({icon:"http://webapi.amap.com/theme/v1.3/markers/n/mark_b.png",position:newAMap.LngLat(item.longitude,item.latitude),label:{offset:newAMap.Pixel(-10,-40),//设置文本标签偏移量content:`${item.label}

`,//设置文本标签内容direction:'right'//设置文本标签方向},title:item.label,});marker.setMap(_this.map);});//css