OGC WMSData directory
OpenStreetMap WMS
OpenStreetMap WMS, bereitgestellt durch terrestris GmbH und Co.
Service facts
- Endpoint
- https://ows.terrestris.de/osm/service?SERVICE=WMS&REQUEST=GetCapabilities
- Type
- OGC WMS
- Layers
- 11
- Formats
- image/jpeg, image/png
- CRS
- EPSG:3857, EPSG:32635, EPSG:25832, EPSG:25833, EPSG:29192, EPSG:29193, EPSG:31466, EPSG:31467, EPSG:31468, EPSG:32648, EPSG:4326, EPSG:4674, EPSG:3068, EPSG:3034, EPSG:3035, EPSG:2100, EPSG:31463, EPSG:4258, EPSG:4839, EPSG:2180, EPSG:21781, EPSG:2056, EPSG:4647, EPSG:4686, EPSG:5243
- CORS
- Not tested
- Response time
- 1364 ms at last check
- Last verified
- 2026-07-24
- Discovered
- 1 time by Geo Hound users
Layers
| Id | Layer | Geometry | Features |
|---|---|---|---|
| OSM-WMS | OpenStreetMap WMS - by terrestris | ||
| OSM-WMS-no-labels | OSM WMS w/o labels - by terrestris | ||
| OSM-Overlay-WMS | OSM Overlay WMS - by terrestris | ||
| TOPO-WMS | Topographic WMS - by terrestris | ||
| TOPO-OSM-WMS | Topographic OSM WMS - by terrestris | ||
| SRTM30-Hillshade | SRTM30 Hillshade - by terrestris | ||
| SRTM30-Colored | SRTM30 Colored - by terrestris | ||
| SRTM30-Colored-Hillshade | SRTM30 Colored Hillshade - by terrestris | ||
| SRTM30-Contour | SRTM30 Contour Lines - by terrestris | ||
| Dark | Dark | ||
| HikeMap | HikeMap |
Use this service
QGIS
Layer > Add Layer > Add WMS/WMTS Layer > New Name: OpenStreetMap WMS URL: https://ows.terrestris.de/osm/service
ArcGIS Pro
Insert > Connections > Server > New WMS Server Server URL: https://ows.terrestris.de/osm/service
Leaflet
L.tileLayer.wms('https://ows.terrestris.de/osm/service', {
layers: 'OSM-WMS',
format: 'image/png',
transparent: true,
}).addTo(map);Python
import requests
params = {
'SERVICE': 'WMS', 'REQUEST': 'GetMap', 'VERSION': '1.3.0',
'LAYERS': 'OSM-WMS', 'CRS': 'EPSG:4326',
'BBOX': '-90,-180,90,180', 'WIDTH': 720, 'HEIGHT': 360,
'FORMAT': 'image/png',
}
png = requests.get('https://ows.terrestris.de/osm/service', params=params).content