 请问一下 openlayer 咋样实现一下两种效果。 1、圆点 + 指针 + 扇形范围。 补充,扇形和 指针的指向 和角度 是通过 方位角 指定的 "{\"方位角\":\" 东南114°\",\"水平角\":\" 28°\",\"俯仰角\":\" 62°\",\"横滚角\":\" 7°\"}" 2、圆点 + 指针。 /** 照片 标记 点 高亮 */ const pointStyle = new Style({ image: new Circle({ radius: 6, fill: new Fill({ color: 'red', }), stroke: new Stroke({ color: '#fff', width: 2 }), }), });