Struggling for this since a long time. I want to use Bootstrap glyphicon as a google map marker image. Below is my javascript code for google maps marker :
var image = {
src: '<i class="glyphicon glyphicon-move"></i>',
size: new google.maps.Size(24, 24),
origin: new google.maps.Point(0,0),
anchor: new google.maps.Point(12,12)
};
var marker = new google.maps.Marker({
draggable: true,
icon: image,
title: 'Drag to move to new location',
raiseOnDrag: false
});
If anyone can guide me with a example?