I am showing different layers to show points on a map, see https://www.corobori.com/sos/TestMap3.html.
My customer would like to see a more traditional marker.
Below is my code showing the blue circle
var layer1 = new ol.layer.Vector
(
{
source: new ol.source.Vector(
{
features: [new ol.Feature(
{
geometry: new ol.geom.Point(ol.proj.fromLonLat([-71.4155802, -36.9046117]))
}
)]
})
}
);
What should I change to use an external png file instead of the circle ?