I have seen many examples for dynamically generating numbers on the marker icons.
One of them i found is google chart apis.This partially solved my problem. I was able to generate number after editing my code as shown below.
But is it possible to add a custom icon like this
and then do generate number over it?
function addMarker(id,location,address,facility,name,ratings)
{
marker = new google.maps.Marker(
{
position: location,
map: map,
animation: google.maps.Animation.DROP,
icon: 'https://chart.googleapis.com/chart?chst=d_map_pin_letter&chld='+id+'|FF776B|000000',
shadow:'https://chart.googleapis.com/chart?chst=d_map_pin_shadow'
});