|
|
@@ -293,13 +293,12 @@ export default class ListenLayer {
|
|
|
};
|
|
|
const lines = dataService.getLines();
|
|
|
for (const lineId in lines) {
|
|
|
- if (exceptLineId == lineId) {
|
|
|
+ if (
|
|
|
+ exceptLineId &&
|
|
|
+ (exceptLineId == lineId || exceptLineId.hasOwnProperty(lineId))
|
|
|
+ ) {
|
|
|
continue;
|
|
|
}
|
|
|
- if (stateService.getEventName() == LayerEvents.MovePoint) {
|
|
|
- console.log("选中的isSelectLine:" + exceptLineId);
|
|
|
- debugger;
|
|
|
- }
|
|
|
|
|
|
const line = dataService.getLine(lineId);
|
|
|
if (
|