i know it\'s possible to add svg overlays to google maps. i\'m wondering if you can use svg files as markers. i tried setting it just like you would a png or jpg file, but nothi
var marker = new google.maps.Marker({
icon: {
size: new google.maps.Size(21, 45),
origin: new google.maps.Point(0, 0),
anchor: new google.maps.Point(21, 45),
url: `data:image/svg+xml;utf-8,
`
}
});