Newer
Older
smartwell_front / src / components / BMap / baiduPointCollection.vue
<script>
  import commonMixin from 'vue-baidu-map/components/base/mixins/common.js'
  import bindEvents from 'vue-baidu-map/components/base/bindEvent.js'
  import {createPoint } from 'vue-baidu-map/components/base/factory.js'

  export default {
    render () {},
    name: 'baiduPointCollection',
    mixins: [commonMixin('overlay')],
    props: {
      points: {
        type: Array,
        default () {
          return []
        }
      },
      shape: {
        type: String,
        default: 'BMAP_POINT_SHAPE_CIRCLE'
      },
      color: {
        type: String
      },
      size: {
        type: String,
        default: 'BMAP_POINT_SIZE_NORMAL'
      }
    },
    watch: {
      shape (val) {
        const {originInstance, color, size} = this
        originInstance.setStyles({
          shape: global[val],
          color,
          size: global[size]
        })
      },
      size (val) {
        const {originInstance, color, shape} = this
        originInstance.setStyles({
          shape: global[shape],
          color,
          size: global[val]
        })
      },
      color (val) {
        const {originInstance, shape, size} = this
        originInstance.setStyles({
          shape: global[shape],
          color: val,
          size: global[size]
        })
      },
      points: {
        deep: true,
        handler (val) {
          const {originInstance} = this
          originInstance.clear()
          originInstance.setPoints(val)
        }
      }
    },
    methods: {
      load () {
        const {BMap, map, points, shape, color, size} = this
        const overlay = this.originInstance = new BMap.PointCollection(points.map(p => createPoint(BMap, p)), {
          shape: global[shape],
          color,
          size: global[size]
        })
        const thisvue = this
        overlay.addEventListener('click', function(e) {
          console.log('baiduPointCollection click listener')
          thisvue.$emit('click',e.point)
        })

        bindEvents.call(this, overlay)
        map.addOverlay(overlay)
      }
    }
  }
</script>