I'm working with Google Maps Api
, and I need to leave the name appearing statically on top / bottom of Marker
, I wanted to put this label / title when creating the marker, like title
, someone knows a way simple to do this?
I'd like something like this:
My marker is being started this way:
var marker = new google.maps.Marker({
position: { lat: lat, lng: lng },
map: map,
title: localizacao.message.nome,
icon: '../Content/imagens/Icones/Markers/green-marker.png'
});
Thank you in advance.