Anyone else have issues with base maps (ortophoto) not displaying?
I've been using the following code for ages without an issue and haven't made any changes, but now it looks like maps.opengeo.org/geowebcache is not functional. Interestingly it was down a couple of weeks ago for me, then worked for most of last week and then on Friday it stopped again. Rebooting my gn instance doesn't make a difference.
Any ideas of a better link(s) or code to use or changes I need to make? I'm still on GN 2.8, GeoServer 2.6.2 if that makes a difference.
Here's what I have in my config-gui.xml >
<mapSearch options="{projection: 'EPSG:4326', maxExtent: new OpenLayers.Bounds(-180,-90,180,90), units: 'degrees', restrictedExtent: new OpenLayers.Bounds(-92,41,-75,49)}">
<layers>
<layer server="http://data.glos.us/geoserver/wms" tocName="Borders" params="{layers: 'gn:ne_50m_boundary_da,gn:ne_50m_boundary_lines_land,gn:ne_50m_coastline', transparent: 'true', format: 'image/png'}" options="{}" />
<layer server="http://maps.opengeo.org/geowebcache/service/wms?" tocName="Ortophoto" params="{layers: 'bluemarble', format: 'image/png'}" options="{isBaseLayer: true}" />
</layers>
</mapSearch>
...and...
<mapViewer options="{projection: 'EPSG:4326', maxExtent: new OpenLayers.Bounds(-180,-90,180,90), units: 'degrees', restrictedExtent: new OpenLayers.Bounds(-92,41,-75,49)}">
<layers>
<layer server="http://data.glos.us/geoserver/wms" tocName="Borders" params="{layers: 'gn:ne_50m_boundary_da,gn:ne_50m_boundary_lines_land,gn:ne_50m_coastline', transparent: 'true', format: 'image/png'}" options="{}" />
<layer server="http://maps.opengeo.org/geowebcache/service/wms?" tocName="Ortophoto" params="{layers: 'bluemarble', format: 'image/png'}" options="{isBaseLayer: true}" />
</layers>
<scales values="[7500000, 5000000, 2500000, 1000000, 750000, 500000, 250000, 100000, 75000, 50000, 25000, 10000, 7500, 5000, 2500, 1000]" />
<!--scales values="" /-->
<proj>
<crs code="EPSG:4326" default="1" name="WGS84 (lat/lon)" />
</proj>
<servers>
<server name="NASA JPL OneEarth Web Mapping Server (WMS)" url="http://wms.jpl.nasa.gov/wms.cgi?" />
<server name="NASA Earth Observations (NEO) WMS" url="http://neowms.sci.gsfc.nasa.gov/wms/wms?" />
<server name="DEMIS World Map Server" url="http://www2.demis.nl/mapserver/wms.asp?" />
<server name="Geoserver" url="http://data.glos.us/geoserver/wms?" />
</servers>
</mapViewer>
Kathy