vue-cesium
Version:
Vue 3.x components for CesiumJS.
1 lines • 4.95 kB
Source Map (JSON)
{"version":3,"file":"index.mjs","sources":["../../../../../../packages/components/graphics/point/index.ts"],"sourcesContent":["/*\n * @Author: zouyaoji@https://github.com/zouyaoji\n * @Date: 2021-09-16 09:28:13\n * @LastEditTime: 2022-04-06 11:38:31\n * @LastEditors: zouyaoji\n * @Description:\n * @FilePath: \\vue-cesium@next\\packages\\components\\graphics\\point\\index.ts\n */\nimport { createCommentVNode, defineComponent, getCurrentInstance } from 'vue'\nimport type {\n VcCallbackPropertyFunction,\n VcColor,\n VcComponentInternalInstance,\n VcComponentPublicInstance,\n VcDistanceDisplayCondition,\n VcNearFarScalar,\n VcReadyObject\n} from '@vue-cesium/utils/types'\nimport { useGraphics } from '@vue-cesium/composables'\nimport {\n show,\n pixelSize,\n heightReference,\n color,\n outlineColor,\n outlineWidth,\n scaleByDistance,\n translucencyByDistance,\n distanceDisplayCondition,\n disableDepthTestDistance\n} from '@vue-cesium/utils/cesium-props'\nimport { kebabCase } from '@vue-cesium/utils/util'\nimport { commonEmits } from '@vue-cesium/utils/emits'\nexport const pointGraphicsProps = {\n ...show,\n ...pixelSize,\n ...heightReference,\n ...color,\n ...outlineColor,\n ...outlineWidth,\n ...scaleByDistance,\n ...translucencyByDistance,\n ...distanceDisplayCondition,\n ...disableDepthTestDistance\n}\nexport default defineComponent({\n name: 'VcGraphicsPoint',\n props: pointGraphicsProps,\n emits: commonEmits,\n setup(props, ctx) {\n // state\n const instance = getCurrentInstance() as VcComponentInternalInstance\n instance.cesiumClass = 'PointGraphics'\n useGraphics(props, ctx, instance)\n\n return () => createCommentVNode(kebabCase(instance.proxy?.$options.name || 'v-if'))\n }\n})\n\nexport type VcGraphicsPointProps = {\n /**\n * A boolean Property specifying the visibility of the point.\n * Default value: true\n */\n show?: boolean | Cesium.CallbackProperty | VcCallbackPropertyFunction<boolean>\n /**\n * A numeric Property specifying the size in pixels.\n * Default value: 1\n */\n pixelSize?: number | Cesium.CallbackProperty | VcCallbackPropertyFunction<number>\n /**\n * A Property specifying what the height is relative to.\n * Default value: Cesium.HeightReference.NONE\n */\n heightReference?: number | Cesium.HeightReference | Cesium.CallbackProperty | VcCallbackPropertyFunction<number>\n /**\n * A Property specifying the VcColor of the point.\n * Default value: white\n */\n color?: VcColor\n /**\n * A Property specifying the VcColor of the outline.\n * Default value: black\n */\n outlineColor?: VcColor\n /**\n * A numeric Property specifying the the outline width in pixels.\n * Default value: 1.0\n */\n outlineWidth?: number | Cesium.CallbackProperty | VcCallbackPropertyFunction<number>\n /**\n * A VcNearFarScalar Property used to scale the point based on distance.\n */\n scaleByDistance?: VcNearFarScalar\n /**\n * A VcNearFarScalar Property used to set translucency based on distance from the camera.\n */\n translucencyByDistance?: VcNearFarScalar\n /**\n * A Property specifying at what distance from the camera that this point will be displayed.\n */\n distanceDisplayCondition?: VcDistanceDisplayCondition\n /**\n * A Property specifying the distance from the camera at which to disable the depth test to.\n */\n disableDepthTestDistance?: number | Cesium.CallbackProperty | VcCallbackPropertyFunction<number>\n /**\n * Triggers before the VcGraphicsPoint is loaded.\n */\n onBeforeLoad?: (instance: VcComponentInternalInstance) => void\n /**\n * Triggers when the VcGraphicsPoint is successfully loaded.\n */\n onReady?: (readyObject: VcReadyObject) => void\n /**\n * Triggers when the component load failed.\n */\n onUnready?: (e: any) => void\n /**\n * Triggers when the VcGraphicsPoint is destroyed.\n */\n onDestroyed?: (instance: VcComponentInternalInstance) => void\n /**\n * Triggers when a property or sub-property is changed or modified.\n */\n onDefinitionChanged?: (property: Cesium.Property) => void\n}\n\nexport type VcGraphicsPointRef = VcComponentPublicInstance<VcGraphicsPointProps>\n"],"names":[],"mappings":";;;;;;;;AAiCO,MAAM,kBAAqB,GAAA;AAAA,EAChC,GAAG,IAAA;AAAA,EACH,GAAG,SAAA;AAAA,EACH,GAAG,eAAA;AAAA,EACH,GAAG,KAAA;AAAA,EACH,GAAG,YAAA;AAAA,EACH,GAAG,YAAA;AAAA,EACH,GAAG,eAAA;AAAA,EACH,GAAG,sBAAA;AAAA,EACH,GAAG,wBAAA;AAAA,EACH,GAAG,wBAAA;AACL,EAAA;AACA,oBAAe,eAAgB,CAAA;AAAA,EAC7B,IAAM,EAAA,iBAAA;AAAA,EACN,KAAO,EAAA,kBAAA;AAAA,EACP,KAAO,EAAA,WAAA;AAAA,EACP,KAAA,CAAM,OAAO,GAAK,EAAA;AAEhB,IAAA,MAAM,WAAW,kBAAmB,EAAA,CAAA;AACpC,IAAA,QAAA,CAAS,WAAc,GAAA,eAAA,CAAA;AACvB,IAAY,WAAA,CAAA,KAAA,EAAO,KAAK,QAAQ,CAAA,CAAA;AAEhC,IAAA,OAAO,MAAG;AAvDd,MAAA,IAAA,EAAA,CAAA;AAuDiB,MAAA,OAAA,kBAAA,CAAmB,YAAU,EAAS,GAAA,QAAA,CAAA,KAAA,KAAT,mBAAgB,QAAS,CAAA,IAAA,KAAQ,MAAM,CAAC,CAAA,CAAA;AAAA,KAAA,CAAA;AAAA,GACpF;AACF,CAAC,CAAA;;;;"}