doc: 增加注释

pull/6/head
cbwu 1 year ago
parent ade03bc747
commit bbe84ec866

@ -1,3 +1,10 @@
/*
* @Author: cbwu 504-wuchengbo@htsdfp.com
* @Date: 2024-04-13 10:03:23
* @LastEditors: cbwu
* @LastEditTime: 2024-04-13 11:07:45
* @Description:
*/
module.exports = { module.exports = {
env: { env: {
browser: true, browser: true,
@ -63,5 +70,6 @@ module.exports = {
semi: false, semi: false,
}, },
], ],
'linebreak-style': [0, 'error', 'windows'], //取消对LF和CRLF的检查
}, },
} }

@ -2,7 +2,7 @@
* @Author: cbwu 504-wuchengbo@htsdfp.com * @Author: cbwu 504-wuchengbo@htsdfp.com
* @Date: 2024-04-13 10:36:06 * @Date: 2024-04-13 10:36:06
* @LastEditors: cbwu * @LastEditors: cbwu
* @LastEditTime: 2024-04-13 10:56:26 * @LastEditTime: 2024-04-13 11:14:53
* @Description: * @Description:
*/ */
import { Color, Cartesian2 } from 'cesium' import { Color, Cartesian2 } from 'cesium'
@ -10,17 +10,17 @@ export interface EntityOptions {
id?: string id?: string
name?: string name?: string
show?: boolean show?: boolean
pixelSize?: number pixelSize?: number //点大小
outlineColor?: Color outlineColor?: Color //轮廓线颜色
color?: Color color?: Color //点颜色
fillColor?: Color fillColor?: Color //填充颜色
fill?: boolean fill?: boolean //是否填充
width?: number width?: number //线宽
outlineWidth?: number outlineWidth?: number
text?: string text?: string //标注内容
font?: string font?: string //字体
pixelOffset?: Cartesian2 pixelOffset?: Cartesian2 //偏移量
image?: string image?: string //图片url
imageWidth?: number imageWidth?: number //图片宽
imageHeight?: number imageHeight?: number //图片高
} }

@ -5,7 +5,7 @@
* @LastEditTime: 2024-04-13 10:45:00 * @LastEditTime: 2024-04-13 10:45:00
* @Description: 广 * @Description: 广
*/ */
import { Entity, Cartesian3, Cartesian2, Color, HeightReference } from 'cesium' import { Entity, Cartesian3, Cartesian2, HeightReference } from 'cesium'
import { getMapAssetsFile } from '@/utils/getAssets' import { getMapAssetsFile } from '@/utils/getAssets'
export class BillBoard extends Entity { export class BillBoard extends Entity {
static ID: number = 0 static ID: number = 0

@ -2,20 +2,10 @@
* @Author: cbwu 504-wuchengbo@htsdfp.com * @Author: cbwu 504-wuchengbo@htsdfp.com
* @Date: 2024-03-28 16:35:33 * @Date: 2024-03-28 16:35:33
* @LastEditors: cbwu * @LastEditors: cbwu
* @LastEditTime: 2024-04-13 10:46:19 * @LastEditTime: 2024-04-13 11:15:48
* @Description: * @Description:
*/ */
import { import { Entity, Cartesian3, Color, PointGraphics, LabelGraphics } from 'cesium'
Entity,
Cartesian3,
Color,
PointGraphics,
PositionProperty,
LabelGraphics,
Cartesian2,
CallbackProperty,
Property,
} from 'cesium'
import { EntityOptions } from '@/types/entityoptions' import { EntityOptions } from '@/types/entityoptions'
// 点 // 点
class PointEntity extends Entity { class PointEntity extends Entity {

Loading…
Cancel
Save