// カスタムマーカーオブジェクト作成（共通）
function makeCustomMarkerObj(){
	var customMarkerObj = new Object();
	customMarkerObj.icon = new GIcon();
	customMarkerObj.icon.image = "http://ecochu.goo-net.com/images/icon/icon_gmap2_s.gif";
	customMarkerObj.icon.iconSize = new GSize(26, 24);
	customMarkerObj.icon.iconAnchor = new GPoint(13, 20);
	customMarkerObj.icon.infoWindowAnchor = new GPoint(20, 12);
	
/*
	customMarkerObj.icon.image = "../images/icon/icon_gmap2_s.gif";
	customMarkerObj.icon.iconSize = new GSize(24, 38);
	customMarkerObj.icon.iconAnchor = new GPoint(12, 38);
	customMarkerObj.icon.infoWindowAnchor = new GPoint(12, 5);
*/
	return customMarkerObj;
}


