/**
 * This file sets varibles and activates the elements of LeafLet maps
 */

var Piter = {
		viewCenterLatLng: new L.LatLng(59.960603436897,30.369172096758),
		popupHtml: '<b>ПЕРВЫЙ САЙТ!</b><br />Бизнес-центр "Литера - А" (правый корпус), Минеральная ул., 13А',
		icon: {
				iconUrl: '/files/site001/js/leaflet/images/ps_flag.png',
				iconSize: new L.Point(148, 45),
				iconAnchor: new L.Point(74, 40),
				popupAnchor: new L.Point(0, -33)
				},
		markerLatLng: new L.LatLng(59.966188603763,30.376188755828),
		routes: [
	               	new L.Polyline(
	               				[new L.LatLng(59.955318142708,30.354945660208),
	               		          new L.LatLng(59.954426434765,30.361940861337),
	               		          new L.LatLng(59.955264426031,30.36900043548),
	               		          new L.LatLng(59.9562850278,30.373206139229),
	               		          new L.LatLng(59.960442312296,30.3693223006),
	               		          new L.LatLng(59.965168307065,30.367434025464),
	               		          new L.LatLng(59.965898627923,30.376789570553),
	               		          new L.LatLng(59.966188603763,30.376188755828)],
	     	               		  {color: 'red'}
	               	 ),
	               	new L.Polyline(
	               				[new L.LatLng(59.957026287237,30.372540951499),
	               		          new L.LatLng(59.962515388423,30.379149914537),
	               		          new L.LatLng(59.965630129446,30.37290573197)],
	               		       {color: 'blue'}
	               	 )		       		
		]
};

var Moscow = {
		viewCenterLatLng: new L.LatLng(55.771351,37.646981),
		popupHtml: '<b>ПЕРВЫЙ САЙТ!</b><br />Орликов переулок, д. 3В, офис 401',
		icon: {
				iconUrl: '/files/site001/js/leaflet/images/ps_flag.png',
				iconSize: new L.Point(148, 45),
				iconAnchor: new L.Point(74, 40),
				popupAnchor: new L.Point(0, -33)
		},
		markerLatLng: new L.LatLng(55.771351,37.646981),
		routes: [ ]
};
var Ekburg= {
		viewCenterLatLng: new L.LatLng(56.827929,60.617871),
		popupHtml: '<b>ПЕРВЫЙ САЙТ!</b><br />ул. Белинского, дом 71а, офис 215',
		icon: {
				iconUrl: '/files/site001/js/leaflet/images/ps_flag.png',
				iconSize: new L.Point(148, 45),
				iconAnchor: new L.Point(74, 40),
				popupAnchor: new L.Point(0, -33)
		},
		markerLatLng: new L.LatLng(56.827929,60.617871),
		routes: [ ]
};


function initMaps(locationData)
{
	divID = 'map';
	var map = new L.Map(divID);
		APIKey = 'BC9A493B41014CAABB98F0471D759707';
	var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/' + APIKey + '/997/256/{z}/{x}/{y}.png',
    	cloudmadeAttrib = '',
    	cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18, attribution: cloudmadeAttrib});
	map.setView(locationData.viewCenterLatLng, 14).addLayer(cloudmade);
	map.addLayer(new L.Marker(locationData.markerLatLng, {icon: new ( icon = L.Icon.extend(locationData.icon))}));
	for(var i in locationData.routes){
		map.addLayer(locationData.routes[i]);
	}
}
