Source

components/location/LocationEvents/LocationEventsMap.vue

<template lang="pug">
    SimplicitiMap
</template>
<script>
import SimplicitiMap from '@c/shared/SimplicitiMap/SimplicitiMap.vue'

/**
 * Map feature
 * @namespace components
 * @category components
 * @subcategory location/events
 * @module LocationEventsMap
 **/
export default {
  name: 'LocationEventsMap',
  components: {
    SimplicitiMap,
  },
  provide: {
    isEventsMap: true,
  },
}
</script>