You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
540 B
TypeScript
27 lines
540 B
TypeScript
1 year ago
|
/*
|
||
|
* @Author: cbwu 504-wuchengbo@htsdfp.com
|
||
|
* @Date: 2024-04-13 10:36:06
|
||
|
* @LastEditors: cbwu
|
||
|
* @LastEditTime: 2024-04-13 10:56:26
|
||
|
* @Description:
|
||
|
*/
|
||
|
import { Color, Cartesian2 } from 'cesium'
|
||
|
export interface EntityOptions {
|
||
|
id?: string
|
||
|
name?: string
|
||
|
show?: boolean
|
||
|
pixelSize?: number
|
||
|
outlineColor?: Color
|
||
|
color?: Color
|
||
|
fillColor?: Color
|
||
|
fill?: boolean
|
||
|
width?: number
|
||
|
outlineWidth?: number
|
||
|
text?: string
|
||
|
font?: string
|
||
|
pixelOffset?: Cartesian2
|
||
|
image?: string
|
||
|
imageWidth?: number
|
||
|
imageHeight?: number
|
||
|
}
|