ol 异常 options.hitDetectionEnabled ?? true

./node_modules/ol/renderer/webgl/PointsLayer.js 175:62 Module parse failed: Unexpected token (175:62)
    this.hitDetectionEnabled_ = options.hitDetectionEnabled ?? true;

运行ol项目是出现编译错误,不支持该语法。

调整语法写法,改成es5的语法:

this.hitDetectionEnabled_ = options.hitDetectionEnabled ? true : false;

项目能正常编译通过。

posted @ 2025-03-26 16:32  【云】风过无痕  阅读(14)  评论(0)    收藏  举报