UNPKG

vue-cesium

Version:
31 lines (28 loc) 895 B
import { defineComponent } from 'vue'; import useDrawingPolyline from '../../../../composables/use-drawing/use-drawing-polyline.mjs'; import { useDrawingActionProps } from '../../../../composables/use-drawing/props.mjs'; import { drawingEmit } from '../../../../utils/emits.mjs'; "use strict"; var VcDrawingPolygon = defineComponent({ name: "VcDrawingPolygon", props: { ...useDrawingActionProps, polylineOpts: Object, primitiveOpts: Object, polygonOpts: Object, loop: Boolean, clampToGround: Boolean, showLabel: Boolean, showDistanceLabel: Boolean, showAngleLabel: Boolean, labelOpts: Object, labelsOpts: Object, autoUpdateLabelPosition: Boolean }, emits: drawingEmit, setup(props, ctx) { return useDrawingPolyline(props, ctx, "VcDrawingPolygon"); } }); export { VcDrawingPolygon as default }; //# sourceMappingURL=index.mjs.map