	
// ********************************************************************
// PROPIEDADES GENERALES DE LOS SERVIDORES DE MAPAS NACIONALES
// ********************************************************************

// Numero de servidores de mapas (n)
numNationalMapServers = 12;

// Direcciones de los servidores web de mapas (WMS) 
nationalMapServersNamesList = new Array(numNationalMapServers);
nationalMapServersNamesList[0] = "http://ovc.catastro.meh.es/Cartografia/WMS/ServidorWMS.aspx";
nationalMapServersNamesList[1] = "http://basesgraficasregistrales.registradores.org/cgi-bin/mapserv?map=/usr/local/apache2/htdocs/wms/wms4.map";
nationalMapServersNamesList[2] = "http://www.cartociudad.es/wms/CARTOCIUDAD/CARTOCIUDAD";
nationalMapServersNamesList[3] = "http://www.idee.es/wms/IDEE-Limite/IDEE-Limite";
nationalMapServersNamesList[4] = "http://siu.vivienda.es/siu/srv/ServidorWMS.ashx";
nationalMapServersNamesList[5] = "http://geoportal.mityc.es/cgi-bin/mapserv";
nationalMapServersNamesList[6] = "http://wms.marm.es/sig/MapaCultivos/wms.aspx";
nationalMapServersNamesList[7] = "http://www.idee.es/wms/IDEE-Referencia/IDEE-Referencia";
nationalMapServersNamesList[8] = "http://www.idee.es/wms/IDEE-Cuadricula-Hojas/IDEE-Cuadricula-Hojas";
nationalMapServersNamesList[9] = "http://www.idee.es/wms/MTN-Raster/MTN-Raster";
nationalMapServersNamesList[10] = "http://www.idee.es/wms/IDEE-Base/IDEE-Base";
nationalMapServersNamesList[11] = "http://www.idee.es/wms/PNOA/PNOA";



// Nombres de los servidores de mapas 
nationalMapServersTitlesList = new Array(numNationalMapServers);
nationalMapServersTitlesList[0] = "Catastro (MEH)";
nationalMapServersTitlesList[1] = "Bases Gráficas Registrales";
nationalMapServersTitlesList[2] = "CartoCiudad";
nationalMapServersTitlesList[3] = "Unidades Estadísticas (INE)";
nationalMapServersTitlesList[4] = "Sistema de Información Urbana (MVIV)";
nationalMapServersTitlesList[5] = "Estaciones de Servicio (MITYC)";
nationalMapServersTitlesList[6] = "Mapa de Cultivos (MARM)";
nationalMapServersTitlesList[7] = "Redes Geodésicas (IGN)";
nationalMapServersTitlesList[8] = "Hojas Cartográficas (IGN)";
nationalMapServersTitlesList[9] = "Mapa Topográfico Nacional 1:25000 (IGN)";
nationalMapServersTitlesList[10] = "Mapa Base (IGN)";
nationalMapServersTitlesList[11] = "Ortofoto PNOA (IGN)";




// Version de cada servidor
nationalMapVersion = new Array(numNationalMapServers);
nationalMapVersion[0] = "1.1.0";
nationalMapVersion[1] = "1.1.1";
nationalMapVersion[2] = "1.1.0";
nationalMapVersion[3] = "1.1.0";
nationalMapVersion[4] = "1.3.0";
nationalMapVersion[5] = "1.1.1";
nationalMapVersion[6] = "1.3.0";
nationalMapVersion[7] = "1.3.0";
nationalMapVersion[8] = "1.3.0";
nationalMapVersion[9] = "1.3.0";
nationalMapVersion[10] = "1.3.0";
nationalMapVersion[11] = "1.1.1";




//Tipos de servicio
nationalServiceType = new Array(numNationalMapServers);
for (var i = 0; i < numNationalMapServers;i++) {
	nationalServiceType[i] = "WMS";  
}

//Formatos por defecto
nationalMapDefaultFormatSelected = new Array(numNationalMapServers);
for (var i = 0; i < numNationalMapServers;i++) {
	nationalMapDefaultFormatSelected[i] = null;  
}
nationalMapDefaultFormatSelected[0] = "image/png";
nationalMapDefaultFormatSelected[4] = "image/png";

