|
@@ -283,8 +283,49 @@ export const draw = (map, obj) => {
|
|
|
};
|
|
|
const addInteraction = () => {
|
|
|
const id = 'baseDrawName'
|
|
|
+ let drawLastPoint = ''
|
|
|
+ let drawLastPointTimer: any = null
|
|
|
+ let drawCircleDBClickTimer: any = null
|
|
|
const draw = new interaction.Draw({
|
|
|
stopClick: true,
|
|
|
+ condition: (e) => {
|
|
|
+ // 圆形单击即触发finishCondition,跳过
|
|
|
+ if (obj.featureType === 'Circle') {
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ const str = e.coordinate.join(',')
|
|
|
+ let flag = true
|
|
|
+ // 进行延时判断,避免只要鼠标不移动,单击后间隔很久也会视为双击,
|
|
|
+ if (!drawLastPointTimer && str === drawLastPoint) {
|
|
|
+ flag = false
|
|
|
+ } else {
|
|
|
+ if (drawLastPointTimer) {
|
|
|
+ clearTimeout(drawLastPointTimer)
|
|
|
+ }
|
|
|
+ drawLastPoint = str
|
|
|
+ }
|
|
|
+ drawLastPointTimer = setTimeout(() => {
|
|
|
+ drawLastPointTimer = null
|
|
|
+ }, 1000)
|
|
|
+ return flag
|
|
|
+ },
|
|
|
+ finishCondition: (e) => {
|
|
|
+ if (obj.featureType !== 'Circle') {
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ let flag = true
|
|
|
+ // 圆形进行双击延时监听判断
|
|
|
+ if (!drawCircleDBClickTimer) {
|
|
|
+ flag = false
|
|
|
+ }
|
|
|
+ if (drawCircleDBClickTimer) {
|
|
|
+ clearTimeout(drawCircleDBClickTimer)
|
|
|
+ }
|
|
|
+ drawCircleDBClickTimer = setTimeout(() => {
|
|
|
+ drawCircleDBClickTimer = null
|
|
|
+ }, 1000)
|
|
|
+ return flag
|
|
|
+ },
|
|
|
source: _source,//测量绘制层数据源
|
|
|
type: obj.rectangle ? 'LineString' : obj.featureType, //几何图形类型
|
|
|
// @ts-ignore
|
|
@@ -292,7 +333,6 @@ export const draw = (map, obj) => {
|
|
|
geometryFunction: obj.rectangle ? createBox() : null,
|
|
|
// geometryFunction: createRegularPolygon(6),
|
|
|
style: commonStyle(obj.featureType === 'Point' ? true : false),
|
|
|
- stopClick: true
|
|
|
});
|
|
|
draw.set('showText', obj.featureType === 'Point' ? true : false)
|
|
|
draw.set(drawFlag[0], drawFlag[1])
|
|
@@ -303,6 +343,7 @@ export const draw = (map, obj) => {
|
|
|
let listener;
|
|
|
//绑定交互绘制工具开始绘制的事件
|
|
|
const drawstartHandle = (evt) => {
|
|
|
+ store.commit('gis/SET_IS_DRAWING', true)
|
|
|
sketch = evt.feature; //绘制的要素
|
|
|
let tooltipCoord = evt.coordinate;// 绘制的坐标
|
|
|
//绑定change事件,根据绘制几何类型得到测量长度值或面积值,并将其设置到测量工具提示框中显示
|
|
@@ -352,6 +393,9 @@ export const draw = (map, obj) => {
|
|
|
featEnd.set(layerFlag[0], layerFlag[1])
|
|
|
featEnd.setId(v4())
|
|
|
store.dispatch('gis/LOAD_IS_TOOLING', false)
|
|
|
+ setTimeout(() => {
|
|
|
+ store.commit('gis/SET_IS_DRAWING', false)
|
|
|
+ }, 600)
|
|
|
}
|
|
|
draw.on('drawend', drawendHandle);
|
|
|
}
|