openlayer new Style 如何画出一下两种效果?

image.png
请问一下 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 }),
  }),
});
阅读 1.1k
avatarAI BotBETA

OpenLayer 可以通过以下方式实现这两种效果

  1. 圆点 + 指针 + 扇形范围:

你可以使用 PolygonStyle 来创建一个具有指针和扇形范围的样式。你需要创建一个包含两个点的 LinearRing,其中一个点代表圆心,另一个点代表扇形的起点。然后,你可以使用 方位角水平角 来旋转这个扇形。下面是一个基本的示例:

const feature = new Feature({
  geometry: new Polygon([
    [
      [0, 0], // 圆心
      [10, 0], // 扇形起点
      [10, 10], // 扇形终点
      [0, 10], // 圆心
    ],
  ]),
});

const style = new Style({
  geometry: feature.geometry,
  image: new Circle({
    radius: 6,
    fill: new Fill({ color: 'red' }),
    stroke: new Stroke({ color: '#fff', width: 2 }),
  }),
  rotation: feature.geometry.getAngle(), // 根据你的需求获取方位角并设置旋转
});

请注意,你需要找到一种方法来根据方位角和水平角计算旋转的角度。这可能需要一些基础的地理和数学知识。

  1. 圆点 + 指针:

对于这个效果,你可以使用一个具有圆点样式特征和一个指向该点的指针样式特征。指针可以使用 LineStringPoint 来实现,其样式可以自定义。以下是一个基本的示例:

const pointFeature = new Feature({
  geometry: new Point([0, 0]), // 圆点位置
});

const pointerFeature = new Feature({
  geometry: new Point([-10, -10]), // 指针位置(相对于圆点)
});

const style = [
  new Style({
    geometry: pointFeature.geometry,
    image: new Circle({
      radius: 6,
      fill: new Fill({ color: 'red' }),
      stroke: new Stroke({ color: '#fff', width: 2 }),
    }),
  }),
  new Style({
    geometry: pointerFeature.geometry,
    // 根据你的需求定制指针样式,如颜色、长度等,甚至可以是其他复杂的样式对象,如箭头等。
  }),
];

在这个例子中,你需要自定义指针的样式。你可以使用 StrokeFill 来定义颜色,使用 Arrow 来定义箭头的形状,或者使用其他适合你需求的样式对象。

1 个回答
const angle = parseFloat("东南114°".match(/(\d+)/)[1]); // 提取数字部分
const rotation = (angle - 90) * (Math.PI / 180); // 转换为弧度并进行调整

const fanShapeStyle = new Style({
    image: new RegularShape({
        fill: new Fill({ color: 'rgba(255,165,0,0.5)' }), // 半透明的橙色
        points: 3,
        radius1: 50,
        radius2: 0,
        angle: rotation
    }),
    stroke: new Stroke({ color: 'red', width: 2 })
});

const pointerStyle = new Style({
    geometry: function(feature) {
        const coordinates = feature.getGeometry().getCoordinates();
        return new LineString([coordinates, [
            coordinates[0] + 50 * Math.cos(rotation),
            coordinates[1] + 50 * Math.sin(rotation)
        ]]);
    },
    stroke: new Stroke({ color: 'red', width: 2 })
});
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进