收藏
回答

微信小程序map组件标注点与气泡位置重叠

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

  


const INIT_POLYLINE = {
  points: [
    {latitude:26.084311,longitude:119.312358}, 
    {latitude:26.084311,longitude:116.312358},         
    {latitude:40.038974,longitude:116.275214},
  ],
  color: '#3875FF',
  width: 4,
  dottedLine: false,
  arrowLine: false,
  borderWidth: 1,
  // colorList: ['#3875FF']
};
const INIT_MARKER = {
  callout: {
    content: '邮政大厦大楼',
    padding: 10,
    borderRadius: 2,
    display: 'ALWAYS',
  },
  latitude: 26.084311,
  longitude: 119.312358,
  iconPath: './imgs/Marker1_Activated@3x.png',
  width: '34px',
  height: '34px',
  rotate: 0,
  alpha: 1
};
Component({
  /**
   * 组件的属性列表
   */
  properties: {


  },


  /**
   * 组件的初始数据
   */
  data: {
    location: {
      latitude: 26.084311,
      longitude: 119.312358
    },
    scale: 5,
    polyline: [{
      ...INIT_POLYLINE
    }],
    markers: [{
      ...INIT_MARKER
    }],
  },


  /**
   * 组件的方法列表
   */
  methods: {


  },
  pageLifetimes: {
    show() {
      if (typeof this.getTabBar === 'function' &&
        this.getTabBar()) {
        this.getTabBar().setData({
          selected: 0
        })
      }
    }
  }
})
最后一次编辑于  2021-12-14
回答关注问题邀请回答
收藏

1 个回答

  • 😶
    😶
    2021-12-14

    你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)

    2021-12-14
    有用
    回复 2
    • 东海叮叮
      东海叮叮
      2021-12-14
      代码片段我都复制了,版本号我也按照规定填写了
      2021-12-14
      回复
    • G
      G
      2022-10-18
      你好 问题解决了吗
      2022-10-18
      回复
登录 后发表内容