Molti esempi caricano sempre l'immagine dell'icona in questo modo (ad esempio qui: 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"
}
});
Dove è memorizzata questa icona e come posso collegarmi a un png o svg locale? O come posso mettere il mio markers
nella fonte? L'esempio non è ben documentato.