mirror of https://gitee.com/antv-l7/antv-l7
style: lint style
This commit is contained in:
parent
916df20c61
commit
3859ff4bbd
|
@ -135,12 +135,12 @@ export default class LayerService implements ILayerService {
|
|||
case 'picking':
|
||||
// TODO: picking 类型的渲染事件
|
||||
// 若是上次触发为地图触发的渲染,则认为是地图事件与拾取事件在同时触发,放弃此次渲染
|
||||
if(this.lastRenderType === 'mapRender') {
|
||||
this.lastRenderType = 'picking'
|
||||
return false
|
||||
if (this.lastRenderType === 'mapRender') {
|
||||
this.lastRenderType = 'picking';
|
||||
return false;
|
||||
} else {
|
||||
this.lastRenderType = 'picking'
|
||||
return true
|
||||
this.lastRenderType = 'picking';
|
||||
return true;
|
||||
}
|
||||
case 'mapRender':
|
||||
this.lastRenderType = 'mapRender';
|
||||
|
|
Loading…
Reference in New Issue