Hello
 
my google map code is:
 
function initialize(mapdata){var LatLng=new 
google.maps.LatLng(mapdata[0],mapdata[1]);
var 
myOptions={zoom:16,scaleControl:true,streetViewControl:false,panControl:true,mapTypeControl:true,center:new
 
google.maps.LatLng(mapdata[0],mapdata[1]),mapTypeId:google.maps.MapTypeId.ROADMAP};
var map=new 
google.maps.Map(document.getElementById("map"),myOptions);document.getElementById("map").style.height="200px";document.getElementById("map").style.width="450px";
var infowindow=new google.maps.InfoWindow();
var marker=new google.maps.Marker({position:LatLng});marker.setMap(map);
google.maps.event.addListener(marker,'mouseover',function(){infowindow.setContent(<div
 
style="text-align:right; font-size:8pt; color:black;">click here<a href="
http://www.google.com/";></a> </div>');
infowindow.open(map,marker);});}
 
my question is how can I track with analytics after a click event in the 
info window content?
 
Thanks in advance,
Irena

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-maps-js-api-v3/-/9DKQGeLCrbYJ.
To post to this group, send email to google-maps-js-api-v3@googlegroups.com.
To unsubscribe from this group, send email to 
google-maps-js-api-v3+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to