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

// Numero de servidores de mapas (n)
numLocalMapServers = 22;


// Direcciones de los servidores web de mapas (WMS)
localMapServersNamesList = new Array(numLocalMapServers);
localMapServersNamesList[0] = "http://andaluciajunta.es/IDEAndalucia/IDEAwms/wms/mta10v";
localMapServersNamesList[1] = "http://andaluciajunta.es/IDEAndalucia/IDEAwms/wms/ortofoto2007";
localMapServersNamesList[2] = "http://sitar.aragon.es/AragonWMS";
localMapServersNamesList[3] = "http://idecan2.grafcan.es/ServicioWMS/MT5";
localMapServersNamesList[4] = "http://idecan1.grafcan.es/ServicioWMS/OrtoExpress";
localMapServersNamesList[5] = "http://www.idee.es/wms/WMS-Cantabria/WMS-Cantabria";
localMapServersNamesList[6] = "http://ide.jccm.es/cgi-bin/mapserv?map=/usr/local/webmapping/ideclm/mapserver/baseideclm.map";
localMapServersNamesList[7] = "http://www.sitcyl.jcyl.es:80/wms/com.esri.wms.Esrimap/BasicaTerritorialE5v10";
localMapServersNamesList[8] = "http://www.idecyl.jcyl.es/services/Fomento/OrtoCyL0708/MapServer/WMSServer";
localMapServersNamesList[9] = "http://galileo.icc.es/wms/servlet/icc_bt5m_v_r";
localMapServersNamesList[10] = "http://shagrat.icc.es/lizardtech/iserv/ows";
localMapServersNamesList[11] = "http://idena.navarra.es/ogc/wms.aspx";
localMapServersNamesList[12] = "http://icvmapas.cetesi.gva.es/wms";
localMapServersNamesList[13] = "http://62.175.255.22/cgi-bin/geoexbase";
localMapServersNamesList[14] = "http://ideg.xunta.es/WMS/Request.aspx";
localMapServersNamesList[15] = "http://ideib.caib.es/pub_ideib/public/MTIB/MapServer/WMSServer";
localMapServersNamesList[16] = "http://ideib.caib.es/pub_ideib/public/Ortofoto/MapServer/WMSServer";
localMapServersNamesList[17] = "http://wms.larioja.org/request.asp";
localMapServersNamesList[18] = "http://www1.euskadi.net:80/wmsconnector/com.esri.wms.Esrimap/WMS_Euskadi_CBase";
localMapServersNamesList[19] = "http://www.cartografia.asturias.es/wmscartografia5000/request.aspx";
localMapServersNamesList[20] = "http://www.cartografia.asturias.es/wmsortofotos/request.aspx";
localMapServersNamesList[21] = "http://cartomur.acotelsa.com/SgdWms/SgdWms.dll/WMS";



//Nombres de los servidores de mapas 
localMapServersTitlesList = new Array(numLocalMapServers);
localMapServersTitlesList[0] = "Andalucía: Mapa Topográfico de Andalucía 1:10000 (ICA)";
localMapServersTitlesList[1] = "Andalucía: Ortofoto 2007 (ICA)";
localMapServersTitlesList[2] = "Aragón: Cartografía de Aragón (SITAR)";
localMapServersTitlesList[3] = "Canarias: Mapa Topográfico 1:5000 (IDECanarias)";
localMapServersTitlesList[4] = "Canarias: OrtoExpress de Canarias 2009 (IDECanarias)";
localMapServersTitlesList[5] = "Cantabria: Base Cartográfica Regional 1:5000 (Gobierno de Cantabria)";
localMapServersTitlesList[6] = "Castilla-La Mancha: Cartografía Base e Imágenes (IDE-CLM)";
localMapServersTitlesList[7] = "Castilla y León: Mapa Topográfico 1:5000 (CIT-JCYL)";
localMapServersTitlesList[8] = "Castilla y León: Ortofoto 2007-08 (CIT-JCYL)";
localMapServersTitlesList[9] = "Cataluña: Base Topográfica de Cataluña 1:5000 (ICC)";
localMapServersTitlesList[10] = "Cataluña: Servicios ráster (ICC)";
localMapServersTitlesList[11] = "Comunidad Foral de Navarra: IDENA (SITNA)";
localMapServersTitlesList[12] = "Comunidad Valenciana: Servidor WMS del ICV (ICV)";
localMapServersTitlesList[13] = "Extremadura: Mapa Base (Junta de Extremadura)";
localMapServersTitlesList[14] = "Galicia: Cartografía Básica (SITGA)";
localMapServersTitlesList[15] = "Illes Balears: Mapa Topográfico 1:5000 (SITIBSA)";
localMapServersTitlesList[16] = "Illes Balears: Ortofotografía e imágenes (SITIBSA)";
localMapServersTitlesList[17] = "La Rioja: IDE Rioja (Gobierno de La Rioja)";
localMapServersTitlesList[18] = "País Vasco: Cartografía Básica (Gobierno Vasco)";
localMapServersTitlesList[19] = "Principado de Asturias: Cartografía 1:5000 (Gobierno del Principado de Asturias)";
localMapServersTitlesList[20] = "Principado de Asturias: Ortofotos 1:5000 (Gobierno del Principado de Asturias)";
localMapServersTitlesList[21] = "Región de Murcia: Cartografía de Referencia (C.A. de la Región de Murcia)";


// Version de cada servidor
localMapVersion = new Array(numLocalMapServers);
for (var i = 0; i < numLocalMapServers;i++) {
	localMapVersion[i] = "1.1.1";  
}
localMapVersion[5] = "1.3.0";
localMapVersion[8] = "1.3.0";  
localMapVersion[9] = "1.3.0";

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

//Formatos por defecto
localMapDefaultFormatSelected = new Array(numLocalMapServers);
for (var i = 0; i < numLocalMapServers;i++) {
	localMapDefaultFormatSelected[i] = null;  
}

