删除框选线色配置项
This commit is contained in:
parent
4fb52cc103
commit
c66f841526
@ -20,10 +20,6 @@ export interface IMouseToolOptions {
|
|||||||
* 是否启用框选,默认启用
|
* 是否启用框选,默认启用
|
||||||
*/
|
*/
|
||||||
boxSelect?: boolean;
|
boxSelect?: boolean;
|
||||||
/**
|
|
||||||
* 框选框的颜色--默认黑色
|
|
||||||
*/
|
|
||||||
boxSelectColor?: string;
|
|
||||||
/**
|
/**
|
||||||
* 是否启用视口拖拽(默认右键),默认启用
|
* 是否启用视口拖拽(默认右键),默认启用
|
||||||
*/
|
*/
|
||||||
@ -42,7 +38,6 @@ class CompleteMouseToolOptions implements IMouseToolOptions {
|
|||||||
boxSelect: boolean;
|
boxSelect: boolean;
|
||||||
viewportDrag: boolean;
|
viewportDrag: boolean;
|
||||||
wheelZoom: boolean;
|
wheelZoom: boolean;
|
||||||
boxSelectColor?: string;
|
|
||||||
selectFilter?: GraphicSelectFilter | undefined;
|
selectFilter?: GraphicSelectFilter | undefined;
|
||||||
constructor() {
|
constructor() {
|
||||||
this.boxSelect = true;
|
this.boxSelect = true;
|
||||||
@ -59,7 +54,6 @@ class CompleteMouseToolOptions implements IMouseToolOptions {
|
|||||||
if (options.wheelZoom != undefined) {
|
if (options.wheelZoom != undefined) {
|
||||||
this.wheelZoom = options.wheelZoom;
|
this.wheelZoom = options.wheelZoom;
|
||||||
}
|
}
|
||||||
this.boxSelectColor = options.boxSelectColor;
|
|
||||||
this.selectFilter = options.selectFilter;
|
this.selectFilter = options.selectFilter;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user