
/* BEGIN OF INCLUDED FILE '/modules/googlemaps/js/googlemaps.js' */


window.googlemaps_createMarker = function(point, html, iconImage, isDraggable) {
    var myIcon = null;
    if (iconImage && iconImage != null && iconImage != '') {
    	myIcon = new GIcon();
    	myIcon.image = iconImage;
    	myIcon.iconSize = new GSize(10, 10);
    	myIcon.iconAnchor = new GPoint(5, 5);
    	myIcon.infoWindowAnchor = new GPoint(5, 5);
    } else {
    	myIcon = new GIcon(G_DEFAULT_ICON);
    }
	var marker = new GMarker(point, { icon:myIcon, draggable:isDraggable });
	if (html && html != null && html != '') {
		GEvent.addListener(marker, "click", function() {
			marker.openInfoWindowHtml(html);
		});
	}
	return marker;
}


/* END OF INCLUDED FILE '/modules/googlemaps/js/googlemaps.js' */


