UNPKG

vue-cesium

Version:
35 lines (30 loc) 967 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var vue = require('vue'); var useDrawingSegment = require('../../../../composables/use-drawing/use-drawing-segment.js'); var props = require('../../../../composables/use-drawing/props.js'); var emits = require('../../../../utils/emits.js'); "use strict"; var VcDrawingRectangle = vue.defineComponent({ name: "VcDrawingRectangle", props: { ...props.useDrawingActionProps, polylineOpts: Object, primitiveOpts: Object, polygonOpts: Object, clampToGround: Boolean, showLabel: Boolean, showDistanceLabel: Boolean, showAngleLabel: Boolean, labelOpts: Object, labelsOpts: Object, loop: Boolean, autoUpdateLabelPosition: Boolean }, emits: emits.drawingEmit, setup(props, ctx) { return useDrawingSegment["default"](props, ctx, "VcDrawingRectangle"); } }); exports["default"] = VcDrawingRectangle; //# sourceMappingURL=index.js.map