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;
项目能正常编译通过。