vue-cesium
Version:
Vue 3.x components for CesiumJS.
31 lines (28 loc) • 900 B
JavaScript
import { defineComponent } from 'vue';
import useDrawingSegment from '../../../../composables/use-drawing/use-drawing-segment.mjs';
import { useDrawingActionProps } from '../../../../composables/use-drawing/props.mjs';
import { drawingEmit } from '../../../../utils/emits.mjs';
;
var VcDrawingRectangle = defineComponent({
name: "VcDrawingRectangle",
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: drawingEmit,
setup(props, ctx) {
return useDrawingSegment(props, ctx, "VcDrawingRectangle");
}
});
export { VcDrawingRectangle as default };
//# sourceMappingURL=index.mjs.map