/* * @Author: cbwu 504-wuchengbo@htsdfp.com * @Date: 2024-04-10 08:53:12 * @LastEditors: cbwu * @LastEditTime: 2024-04-10 09:20:34 * @Description: 广告牌对象 */ import { Entity, Cartesian3, Color } from 'cesium' export class BillBoard extends Entity { constructor(position: Cartesian3) { super({ position: position, billboard: { show: true, image: '@/assets/map/marker.svg', width: 32, height: 32, }, }) } }