收藏
回答

map控件里label和callout同时使用

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug map 工具 6.6.6 1.9.1

map控件里label和callout同时使用,点击market,callout会同时出现两个。

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

3 个回答

  • hexford~🐶
    hexford~🐶
    2018-06-01

    你好,IOS上测试点击marker,只会出现一个callout,麻烦提供下代码片段和机型相关信息

    2018-06-01
    有用
    回复
  • 炒了个饭
    炒了个饭
    2018-05-30

    js:

    latitude: 40.069,

    longitude: 116.129,

    markers: [{

    id: 382712,

    latitude: 40.07103,

    longitude: 116.12672,

    iconPath: '/image/zhfw.png',

    width: 16,

    height: 16,

    label: { content: '安云影像', color: '#db5712', x: -16, y: 6, fontSize: 8 },

    callout: { content: '去逛逛', color: '#db5712', display: 'BYCLICK', borderRadius: 5, fontSize: 8, display: 'BYCLICK' },

    anchor: { x: .5, y: .5 }

    },

    {

    id: 382715,

    latitude: 40.071445,

    longitude: 116.12731,

    iconPath: '/image/mscy.png',

    width: 16,

    height: 16,

    label: { content: '安河家园小\n顾披萨外卖', color: '#db1296', x: -16, y: 6, fontSize: 8 },

    callout: { content: '去逛逛', color: '#db1296', display: 'BYCLICK', borderRadius: 5, fontSize: 8, display: 'BYCLICK' },

    anchor: { x: .5, y: .5 }

    }

    ],

    wxml:

    <map

    id="myMap"

    style="width: 100%; height: 100%;"

    latitude="{{latitude}}"

    longitude="{{longitude}}"

    markers="{{markers}}"

    circles="{{circles}}"

    scale = "17"

    bindmarkertap="markertap"

    bindcallouttap = "bindcallouttap"

    bindtap="bindtap"

    show-location

    ></map>


    2018-05-30
    有用
    回复
  • 疯狂的小辣椒
    疯狂的小辣椒
    2018-05-30

    你好,麻烦提供下代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html?search-key=%E4%BB%A3%E7%A0%81%E7%89%87%E6%AE%B5)

    2018-05-30
    有用
    回复
登录 后发表内容