收藏
回答

图标和callout文字重叠在一起,该怎么分开?

callout气泡正常应该在位置图标的上方,现在重叠在一起了该怎么办

.wxml文件如下:

<map class="mapmarkers="{{siteMakers}}" latitude="{{location.latitude}}" longitude="{{location.longitude}}" scale="{{20}}">

data数据如下:

siteMakers: 

        [

            {

                callout: {

                    content: '内容',

                    padding: 10,

                    borderRadius: 2,

                    display: 'ALWAYS',

                    anchorY:-10

                },

                latitude: 31.283131,

                longitude: 121.213922,

                iconPath: './imgs/Marker1_Activated@3x.png',

                width: '34px',

                height: '34px',

                rotate: 0,

                alpha: 1

            }

        ],

        location: {

            latitude: 31.283131,

            longitude: 121.213922

        },

回答关注问题邀请回答
收藏

1 个回答

  • 风无雨
    风无雨
    2022-10-01

    问题已解决,需要将上面的maker的宽高设置为number类型即写成

    width:34,
    height:34
    

    具体为什么不能写成'34px',有待进一步查看

    2022-10-01
    有用
    回复
登录 后发表内容