My code below will show the green color marker but I need to show the letter 'k' inside the marker. How would I do this?
var marker={
"title": "Kathmandu",
"lat":27.700,
"lng":85.333333300000050 ,
"description": "Kathmandu,Bagmati,Neapal<br>[i]"
}
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
icon:'http://maps.google.com/mapfiles/ms/icons/green-dot.png',
title: data.title
});