// JavaScript Document

function initialize() {
var centerPos = new google.maps.LatLng(43.04355086427659,141.3672637939453);
var school01 = new google.maps.LatLng(43.067265334126496,141.34820938110352);
var school02 = new google.maps.LatLng(43.011300158935924,141.38378620147705);
var mapOptions = {
zoom : 12,
center : centerPos,
mapTypeId: google.maps.MapTypeId.ROADMAP,
mapTypeControl : true,
scaleControl : false,
navigationControl : true,
navigationControlOptions : {style : google.maps.NavigationControlStyle.ZOOM_PAN}
};

var map = new google.maps.Map(document.getElementById("google-map"), mapOptions);

var markerOptions = {
position : school01,
map : map,
icon : "images/pin01.png",
title : "札幌大学サテライトキャンパス"
};
var marker = new google.maps.Marker(markerOptions);

var markerOptions = {
position : school02,
map : map,
icon : "images/pin02.png",
title : "札幌大学キャンパス"
};
var marker = new google.maps.Marker(markerOptions);

}


window.onload = initialize;
function map_window(theURL,winName,features) {
window.open(theURL,winName,features);
}

