mapbox-gl-js アイコン画像の色を変更する方法はありますか?
https://www.mapbox.com/mapbox-gl-js/example/geojson-markers/から取得したこのコードは、マーカーの色を赤に変更しません
map.addLayer({
"id": "markers",
"type": "symbol",
"source": "markers",
"layout": {
"icon-image": "{marker-symbol}-15",
"text-field": "{title}",
"text-font": ["Open Sans Semibold", "Arial Unicode MS Bold"],
"text-offset": [0, 0.6],
"text-anchor": "top"
},
"paint": {
"text-size": 12,
"icon-color" : "#ff0000"
}
});
公式ドキュメントに記載されているすべてのオプションを試しました