UNPKG

@fawmi/vue-google-maps

Version:

Google Map components for Vue.js 3

42 lines (38 loc) 590 B
import buildComponent from './build-component.js' const props = { bounds: { type: Object, twoWay: true, }, draggable: { type: Boolean, default: false, }, editable: { type: Boolean, default: false, }, options: { type: Object, twoWay: false, }, } const events = [ 'click', 'dblclick', 'drag', 'dragend', 'dragstart', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick', ] export default buildComponent({ mappedProps: props, name: 'rectangle', ctr: () => google.maps.Rectangle, events, })