Skip to content

Commit

Permalink
Using a server that is not down
Browse files Browse the repository at this point in the history
fix #353
  • Loading branch information
ahocevar committed Mar 13, 2013
1 parent 76d1a0c commit 14d9ff3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/wms-single-image.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ var layers = [
}),
new ol.layer.ImageLayer({
source: new ol.source.SingleImageWMS({
url: 'http://demo.opengeo.org/geoserver/wms',
url: 'http://suite.opengeo.org/geoserver/wms',
crossOrigin: null,
params: {'LAYERS': 'topp:states'},
params: {'LAYERS': 'usa:states'},
extent: new ol.Extent(-13884991, 2870341, -7455066, 6338219)
})
})
Expand Down
4 changes: 2 additions & 2 deletions examples/wms-tiled.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ var layers = [
}),
new ol.layer.TileLayer({
source: new ol.source.TiledWMS({
url: 'http://demo.opengeo.org/geoserver/wms',
url: 'http://suite.opengeo.org/geoserver/wms',
crossOrigin: null,
params: {'LAYERS': 'topp:states', 'TILED': true},
params: {'LAYERS': 'usa:states', 'TILED': true},
extent: new ol.Extent(-13884991, 2870341, -7455066, 6338219)
})
})
Expand Down

0 comments on commit 14d9ff3

Please sign in to comment.