在两个页面中使用的是相同的代码
具体区别 关于map组件 在示例代码中点击添加新的marker时 callout在地图上各种配置参数都会生效也会默认显示
但是在复制出去的代码中对于map callout的各种配置都不生效了 用的同样是nvue页面
const testMarkers = [{
id: 1,
latitude: 39.9086920000,
longitude: 116.3974770000,
title: '天安门',
zIndex: '1',
iconPath: '../../static/logo.png',
width: 40,
height: 40,
anchor: {
x: 0.5,
y: 1
},
callout: {
content: '首都北京\n天安门',
color: '#00BFFF',
fontSize: 12,
borderRadius: 2,
borderWidth: 0,
borderColor: '#333300',
bgColor: '#CCFF11',
padding: '1',
display: 'ALWAYS'
}
}]
0 个回复