I want to use a font awesome icon as Google Maps marker. Here is my code:
function addMarker(marker) {
marker1 = new google.maps.Marker({
position: new google.maps.LatLng(obj.geo_lat,obj.geo_lng),
category: obj.status,
map: map,
icon: // Font Awesome icon here
});
I've looked at this question, but unfortunately this is not working properly for me. I was wondering if there's another way to do this.