0
次のgeo jsonを持つMultiPoint機能があります。私は地図上に描画し、スタイル関数を介して任意のアイコンを適用し、そのすべてのpoints.Butに適用Openlayers 3 - MultiPoint機能の各ポイントの異なるスタイル/マーカー
{
"type": "Feature",
"geometry": {
"type": "MultiPoint",
"coordinates": [
[
-123,
58
],
[
-152.32,
17.5
],
[
52.02,
42.64
]
]
}
}
私は、マップ上の異なるアイコンで上記のすべての3点の座標を表示したいと思います。マルチポイント機能の各座標に異なるマーカーを追加する方法はありますか?
これはhttp://gis.stackexchange.com/questions/222187/openlayers-3-different-style-marker-for-each-point-on-a-multipoint-featureの重複投稿です – bartvde