
























", options: {icon: TMURL + "images/blue-marker.png"}, id: "1"} ], events: { mouseover: function (marker, event, context) { var map = $(this).gmap3("get"); infowindow = $(this).gmap3({get: {name: "infowindow"}}); marker.setIcon(TMURL + "images/orange-marker.png"); if (infowindow) { infowindow.open(map, marker); infowindow.setContent(context.data); } else { jQuery(this).gmap3({ infowindow: { anchor: marker, options: {content: context.data} } }); } }, mouseout: function (marker) { var infowindow = jQuery(this).gmap3({get: {name: "infowindow"}}); marker.setIcon(TMURL + "images/blue-marker.png"); } } }, map: { options: { zoom: 13 } } }); -->