vue-cesium
Version:
Vue 3.x components for CesiumJS.
24 lines (21 loc) • 678 B
JavaScript
import { defineComponent } from 'vue';
import { useDrawingActionProps } from '../../../../composables/use-drawing/props.mjs';
import useDrawingPoint from '../../../../composables/use-drawing/use-drawing-point.mjs';
import { drawingEmit } from '../../../../utils/emits.mjs';
;
var VcDrawingPin = defineComponent({
name: "VcDrawingPin",
props: {
...useDrawingActionProps,
billboardOpts: Object,
labelOpts: Object,
heightReference: Number,
showLabel: Boolean
},
emits: drawingEmit,
setup(props, ctx) {
return useDrawingPoint(props, ctx, "VcDrawingPin");
}
});
export { VcDrawingPin as default };
//# sourceMappingURL=index.mjs.map