// Settngs
var startPoint = {y:35.6472854 , x:139.7284627 };
var zoomDefault = 8;
var server = "/";
var PHPpath = server+"map.php";
var twitter_account = "webcremap";
// definition
var mgrOptions = { borderPadding: 50, trackMarkers: true };
var DistrictFocus = {
	"北海道" : { "y" : 43.43696596521823, "x" : 142.745361328125, "zoom" : -1 },
	"東北"   : { "y" : 39.036252959636606, "x" : 140.526123046875, "zoom" : -1 },
	"関東"   : { "y" : 35.84453450421661, "x" : 139.7186279296875, "zoom" : 0 },
	"中部"   : { "y" : 36.155617833818525, "x" : 138.1640625, "zoom" : 0 },
	"近畿"   : { "y" : 34.962497232449145, "x" : 135.626220703125, "zoom" : 0 },
	"中国"   : { "y" : 34.92197103616377, "x" : 132.945556640625, "zoom" : 0 },
	"四国"   : { "y" : 33.6008944080788, "x" : 133.4619140625, "zoom" : 1 },
	"九州"   : { "y" : 32.537551746769, "x" : 131.044921875, "zoom" : 0 },
	"沖縄"   : { "y" : 25.4829511753553, "x" : 126.40869140625, "zoom" : 0 }
};
function changeDistrict(name, adjustZoom) {
	if ( name && typeof(adjustZoom) ) {
		SkyarchMap.changeFocus(DistrictFocus[name]["x"], DistrictFocus[name]["y"], DistrictFocus[name]["zoom"]+adjustZoom );
	}
}

$(function(){
if (GBrowserIsCompatible()) {
	SkyarchMap.init();
}
$("#map_navi :checkbox").click(function(){
	var filter = "";
	var count = 0;
	$("#map_navi :checked").each(function(index, item){
		filter += "&filter"+count+"="+item.name+":"+item.value;
		count++;
	});
	console.log(filter);
	additional_args = filter;
	SkyarchMap.update();
});
});

