Marker with image and number in google maps api
问题 I am using gmap .. I want to put some marker on the map the marker icon is dynamic, I also want a "Number" to be display with the Icon , Is this possible.. My Code is function putMaker(position, title, title_dis, number, icon_img) { if (!isNaN(number)) var icon = "https://chart.googleapis.com/chart?chst=d_bubble_icon_text_small&chld=ski|bb|" + number + "|FFFFFF|000000"; else var icon = null; var marker = new google.maps.Marker({ position: position, map: map, icon: icon_img, shadow: icon, });