Skip to content

Commit 10e793e

Browse files
committed
Update ports for workshop
1 parent c09bdfd commit 10e793e

32 files changed

Lines changed: 99 additions & 102 deletions

workshop/content/docs/advanced/arcgis.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,9 @@ labelsCheckbox.addEventListener('change', (event) => {
173173
174174
!!! example
175175
176-
- Direct MapServer request: <http://localhost:7000/?map=/etc/mapserver/arcgis.map&REQUEST=GetMap&SERVICE=WMS&VERSION=1.3.0&FORMAT=image%2Fpng&STYLES=&TRANSPARENT=TRUE&LAYERS=PoolPermits&WIDTH=3840&HEIGHT=1907&CRS=EPSG%3A3857&BBOX=-13076703%2C4014686%2C-13072117.389151445%2C4016958>
177-
- Direct MapServer request with labels: <http://localhost:7000/?map=/etc/mapserver/arcgis.map&REQUEST=GetMap&SERVICE=WMS&VERSION=1.3.0&FORMAT=image%2Fpng&STYLES=&TRANSPARENT=TRUE&LAYERS=PoolPermits&LABELS=visible&WIDTH=3840&HEIGHT=1907&CRS=EPSG%3A3857&BBOX=-13076703%2C4014686%2C-13072117.389151445%2C4016958>
178-
- Local OpenLayers example: <http://localhost:7001/arcgis.html>
176+
- Direct MapServer request: <http://localhost:9090/?map=/etc/mapserver/arcgis.map&REQUEST=GetMap&SERVICE=WMS&VERSION=1.3.0&FORMAT=image%2Fpng&STYLES=&TRANSPARENT=TRUE&LAYERS=PoolPermits&WIDTH=3840&HEIGHT=1907&CRS=EPSG%3A3857&BBOX=-13076703%2C4014686%2C-13072117.389151445%2C4016958>
177+
- Direct MapServer request with labels: <http://localhost:9090/?map=/etc/mapserver/arcgis.map&REQUEST=GetMap&SERVICE=WMS&VERSION=1.3.0&FORMAT=image%2Fpng&STYLES=&TRANSPARENT=TRUE&LAYERS=PoolPermits&LABELS=visible&WIDTH=3840&HEIGHT=1907&CRS=EPSG%3A3857&BBOX=-13076703%2C4014686%2C-13072117.389151445%2C4016958>
178+
- Local OpenLayers example: <http://localhost:9091/arcgis.html>
179179
180180
??? JavaScript "arcgis.js"
181181

workshop/content/docs/advanced/clusters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ CLASS
3131

3232
!!! example
3333

34-
- MapServer request: <http://localhost:7000/?map=/etc/mapserver/clusters.map&mode=map&layer=trees>
35-
- OpenLayers example: <http://localhost:7001/clusters.html>
34+
- MapServer request: <http://localhost:9090/?map=/etc/mapserver/clusters.map&mode=map&layer=trees>
35+
- OpenLayers example: <http://localhost:9091/clusters.html>
3636

3737
??? JavaScript "clusters.js"
3838

workshop/content/docs/advanced/gdalg.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ LAYER
125125

126126
!!! example
127127

128-
- Direct MapServer request: <http://localhost:7000/?map=/etc/mapserver/gdalg.map&REQUEST=GetMap&SERVICE=WMS&VERSION=1.3.0&FORMAT=image%2Fpng&STYLES=&TRANSPARENT=TRUE&LAYERS=buffered_roads%2Croads&WIDTH=1707&HEIGHT=848&CRS=EPSG%3A3857&BBOX=2974643.6269619283%2C8046226.818245997%2C2976682.478528896%2C8047239.608870775>
129-
- Local OpenLayers example: <http://localhost:7001/gdalg.html>
128+
- Direct MapServer request: <http://localhost:9090/?map=/etc/mapserver/gdalg.map&REQUEST=GetMap&SERVICE=WMS&VERSION=1.3.0&FORMAT=image%2Fpng&STYLES=&TRANSPARENT=TRUE&LAYERS=buffered_roads%2Croads&WIDTH=1707&HEIGHT=848&CRS=EPSG%3A3857&BBOX=2974643.6269619283%2C8046226.818245997%2C2976682.478528896%2C8047239.608870775>
129+
- Local OpenLayers example: <http://localhost:9091/gdalg.html>
130130

131131
??? JavaScript "gdalg.js"
132132

workshop/content/docs/advanced/other-projections.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ if we were to use the service-specific metadata items.
8282
!!! note
8383

8484
The order of the layers in the Mapfile is important when requesting a map directly using the MapServer CGI interface
85-
(for example <http://localhost:7000/?map=/etc/mapserver/other-projections.map&mode=map&layer=countries&layer=cities&layer=raster>).
85+
(for example <http://localhost:9090/?map=/etc/mapserver/other-projections.map&mode=map&layer=countries&layer=cities&layer=raster>).
8686
The raster layer must be first in the Mapfile, otherwise the raster will be drawn on top of the vector layers and obscure them. The order of the layers in the request
8787
itself does not affect the rendering order, only the order in the Mapfile.
8888

@@ -235,8 +235,8 @@ const wcsSource = new ImageWMS({
235235
236236
!!! example
237237
238-
- MapServer request: <http://localhost:7000/?map=/etc/mapserver/other-projections.map&mode=map&layer=countries&layer=cities&layer=raster>
239-
- OpenLayers example: <http://localhost:7001/other-projections.html>
238+
- MapServer request: <http://localhost:9090/?map=/etc/mapserver/other-projections.map&mode=map&layer=countries&layer=cities&layer=raster>
239+
- OpenLayers example: <http://localhost:9091/other-projections.html>
240240
241241
??? JavaScript "other-projections.js"
242242
@@ -270,7 +270,7 @@ const wcsSource = new ImageWMS({
270270
2. Update the Mapfile to use another non-EPSG projection, for example `ESRI:54030` (the [Robinson projection](https://en.wikipedia.org/wiki/Robinson_projection)).
271271

272272
Test everything is configured correctly by making a direct request to the MapServer CGI interface
273-
using <http://localhost:7000/?map=/etc/mapserver/other-projections.map&mode=map&layer=countries&layer=cities&layer=raster>.
273+
using <http://localhost:9090/?map=/etc/mapserver/other-projections.map&mode=map&layer=countries&layer=cities&layer=raster>.
274274

275275

276276
## Further Reading

workshop/content/docs/advanced/sld.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ This exercise will focus on the first use case.
2424

2525
!!! example
2626

27-
- Direct MapServer request: <http://localhost:7000/?map=/etc/mapserver/lines.map&mode=map&layer=roads>
28-
- Local OpenLayers example: <http://localhost:7001/sld.html>
29-
- GetCapabilities request: <http://localhost:7000/?map=/etc/mapserver/sld.map&REQUEST=GetCapabilities&SERVICE=WMS&VERSION=1.3.0>
30-
- Request to generate SLD from a Mapfile: <http://localhost:7000/?map=/etc/mapserver/sld.map&REQUEST=GetStyles&SERVICE=WMS&LAYERS=countries&VERSION=1.3.0&sld=http://node:7001/data/sld.xml>
27+
- Direct MapServer request: <http://localhost:9090/?map=/etc/mapserver/lines.map&mode=map&layer=roads>
28+
- Local OpenLayers example: <http://localhost:9091/sld.html>
29+
- GetCapabilities request: <http://localhost:9090/?map=/etc/mapserver/sld.map&REQUEST=GetCapabilities&SERVICE=WMS&VERSION=1.3.0>
30+
- Request to generate SLD from a Mapfile: <http://localhost:9090/?map=/etc/mapserver/sld.map&REQUEST=GetStyles&SERVICE=WMS&LAYERS=countries&VERSION=1.3.0&sld=http://node:9091/data/sld.xml>
3131

3232
???+ SLD
3333

workshop/content/docs/advanced/stac.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ new ImageLayer({
135135

136136
!!! example
137137

138-
- Local OpenLayers example: <http://localhost:7001/stac.html>
138+
- Local OpenLayers example: <http://localhost:9091/stac.html>
139139

140140
??? JavaScript "stac.js"
141141

workshop/content/docs/advanced/symbols.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ END
8181

8282
!!! example
8383

84-
- Direct MapServer request: <http://localhost:7000/?map=/etc/mapserver/railways.map&mode=map&layer=roads>
85-
- Local OpenLayers example: <http://localhost:7001/railways.html>
84+
- Direct MapServer request: <http://localhost:9090/?map=/etc/mapserver/railways.map&mode=map&layer=roads>
85+
- Local OpenLayers example: <http://localhost:9091/railways.html>
8686

8787
??? JavaScript "railways.js"
8888

workshop/content/docs/inputs/databases.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ Online example not available as no PostGIS installation on the server
7979

8080
!!! example "Exercise Links"
8181

82-
- MapServer request: <http://localhost:7000/?map=/etc/mapserver/postgis.map&mode=map&layer=water>
83-
- OpenLayers example: <http://localhost:7001/postgis.html>
82+
- MapServer request: <http://localhost:9090/?map=/etc/mapserver/postgis.map&mode=map&layer=water>
83+
- OpenLayers example: <http://localhost:9091/postgis.html>
8484

8585
??? JavaScript "postgis.js"
8686

@@ -98,7 +98,7 @@ Online example not available as no PostGIS installation on the server
9898

9999
1. Try to load another dataset into the database using the `gdal vector convert` approach above.
100100
2. Now add a new layer to the Mapfile to display the layer. You can make a direct request to MapServer in the form:
101-
<http://localhost:7000/?map=/etc/mapserver/postgis.map&mode=map&layers=water%20NEWLAYERNAME>.
101+
<http://localhost:9090/?map=/etc/mapserver/postgis.map&mode=map&layers=water%20NEWLAYERNAME>.
102102
3. Now update the JS file so the layer is visible in the interactive map via WMS:
103103

104104
```js

workshop/content/docs/inputs/raster.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ A [COMPOSITE](https://mapserver.org/mapfile/composite.html) block is used to mak
8585

8686
!!! example
8787

88-
- MapServer request: <http://localhost:7000/?map=/etc/mapserver/raster.map&mode=map&layer=dtm>
89-
- OpenLayers example: <http://localhost:7001/raster.html>
88+
- MapServer request: <http://localhost:9090/?map=/etc/mapserver/raster.map&mode=map&layer=dtm>
89+
- OpenLayers example: <http://localhost:9091/raster.html>
9090

9191
??? JavaScript "raster.js"
9292

workshop/content/docs/inputs/vector.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ than a huge GeoTIFF file.
3838

3939
!!! example
4040

41-
- MapServer request: <http://localhost:7000/?map=/etc/mapserver/stars.map&mode=map&layer=constellations>
42-
- OpenLayers example: <http://localhost:7001/stars.html>
41+
- MapServer request: <http://localhost:9090/?map=/etc/mapserver/stars.map&mode=map&layer=constellations>
42+
- OpenLayers example: <http://localhost:9091/stars.html>
4343

4444
??? JavaScript "stars.js"
4545

0 commit comments

Comments
 (0)