I am trying to create map \"pin-drops\" (ie. map markers) in OpenLayers-3 (OL3) using SVG images.
Currently, I am using PNG images as the pindrops that reference the
Based on @ahocevar answer, you can use data URIs for SVG:
new ol.style.Style({ image: new ol.style.Icon({ anchor: [0, 0], src: 'data:image/svg+xml;utf8,/* SVG DATA */' }) });