var geocoder;
var map;
function initialize() {
	geocoder = new google.maps.Geocoder();
    var mylatlng = new google.maps.LatLng(34.02000,131.860641);
    var myOptions = {
      zoom: 13,
      center: mylatlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
    
	var flightPlanCoordinates = [
    	new google.maps.LatLng(34.009152,131.868317),
    	new google.maps.LatLng(34.010838,131.867094),
    	new google.maps.LatLng(34.011189,131.866681),
    	new google.maps.LatLng(34.013194,131.865404),
    	new google.maps.LatLng(34.015253,131.862749),
    	new google.maps.LatLng(34.020524,131.854072),
    	new google.maps.LatLng(34.020677,131.854193),
  	];
  	var flightPath = new google.maps.Polyline({
    	path: flightPlanCoordinates,
    	strokeColor: "#FF0000",
    	strokeOpacity: 1.0,
    	strokeWeight: 2
  	});

  	flightPath.setMap(map);
	
//マーカーの設定
	var image = 'images/person2_m2_icon2.gif';
	var LatLng	= new google.maps.LatLng(34.020677,131.854193);
    var marker = new google.maps.Marker({
    	position: LatLng,
        map: map,
		icon: image,
        title: "有限会社マルカ"
	});
	var infowindow = new google.maps.InfoWindow({
        content: '<span style="font-size : 125%;"><a href="http://www.maruka-fudousan.com/">有限会社マルカ</a></span><br />〒744-0075<br />山口県下松市瑞穂町1-10-1<br />Tel:(0833)-44-3950',
        size: new google.maps.Size(350, 100)
    });
    google.maps.event.addListener(marker, 'click', function() {
        infowindow.open(map,marker);
		map.setZoom(17);
		map.setCenter(LatLng);
    });
		
	var image2 = 'http://www.sunlive-map.jp/img/01.png';
	var LatLng2 = new google.maps.LatLng(34.03062939394728,131.865473985672);
	var marker2 = new google.maps.Marker({
        position: LatLng2,
        map: map,
		icon: image2,
        title: "サンリブ下松"
    });
	var infowindow2 = new google.maps.InfoWindow({
        content: '<span style="font-size : 125%;"><a href="http://www.sunlive.co.jp/">サンリブ下松</a></span><br />所在地：山口県下松市南花岡6丁目8番1号<br />営業時間：9:30 〜 21:00<br />TEL:0833-44-3336',
        size: new google.maps.Size(350, 100)
    });
    google.maps.event.addListener(marker2, 'mouseup', function() {
        infowindow2.open(map,marker2);
		map.setZoom(17);
		map.setCenter(LatLng2);
    });
//マーカーの設定　ここまで    
}
 
function codeAddress() {
	var address = document.getElementById("address").value;
    if (geocoder) {
    	geocoder.geocode( { 'address': address}, function(results, status) {
			if (status == google.maps.GeocoderStatus.OK) {
        		map.setCenter(results[0].geometry.location);
          		/*var marker = new google.maps.Marker({
            	map: map, 
            	position: results[0].geometry.location
          		});*/
        	} else {
          			alert("ジオコードは、次の理由で成功しませんでした：" + status);
		  	}
      	});
    }
}
function codeAddress2() {
    var address = document.getElementById("address2").value;
    if (geocoder) {
		geocoder.geocode( { 'address': address}, function(results, status) {
			if (status == google.maps.GeocoderStatus.OK) {
				map.setCenter(results[0].geometry.location);
				var marker = new google.maps.Marker({
				map: map, 
				position: results[0].geometry.location
			});
			} else {
				alert("ジオコードは、次の理由で成功しませんでした：" + status);
			}
		});
	}
}
