Vector 矢量
何时使用
当需要矢量功能时 ,可以使用该组件。
代码演示
基本使用
API
属性 | 说明 | 类型 | 默认值 |
---|---|---|---|
id | 组件唯一标识符 | number | - |
isOpen | 组件是否打开 | boolean | false |
parameter | 矢量参数 | VectorParameter | - |
parameterOptions | 矢量参数选项 | VectorParameterOptions | - |
onConfirm | 确认按钮回调 | (v: VectorParameter) => void | - |
onClose | 关闭按钮回调 | () => void | - |
VectorParameter
type VectorParameter = {
parameter: string;
sizeMode: string;
size: number;
displaySurface: string;
fieldVariable: string;
opacity: number;
};
VectorParameterOptions
type VectorParameterOptions = {
parameter?: SelectOptionProps;
sizeMode?: RadioProps;
size?: SliderInputProps;
displaySurface?: SelectOptionProps;
fieldVariable?: SelectOptionProps;
opacity?: SliderInputProps;
};