Hi,
I would like to draw transparent label on Google Marker.
Hit problem with MarkerWithLabel(..) not defined exception...
Any support are appreciated ..
Here is what I have done..
Create CSS1 for the .labels class
.labels {
color: red;
background-color: transparent;
font-family: "Lucida Grande", "Arial", sans-serif;
font-size: 10px;
font-weight: bold;
text-align: center;
width: 100px;
border: 0;
}
Add javascript in service success JS:
var marker1 = new MarkerWithLabel({
position: new google.maps.LatLng(40.0000000,-73.0000000),
draggable: true,
raiseOnDrag: true,
map: map,
labelContent: "Tina's transparent Marker With Label",
labelAnchor: new google.maps.Point(50, 0),
labelClass: "labels", // the CSS class for the label
labelStyle: {opacity: 0.75}
});
Need to find way to define
Where to find the headers files and add the entry to it?
Or I have other issues that have overlooked.
Thanks