diff --git a/.vscode/settings.json b/.vscode/settings.json
index a9350c9..b795faa 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -5,10 +5,12 @@
"arcgis",
"arcgisonline",
"BODC",
+ "clearmap",
"DAAC",
"GEBCO",
"geofabrik",
"Geographics",
+ "geoservices",
"hinanbasho",
"Maxar",
"naturalearthdata",
diff --git a/public/stylejson/geoservices.un.org/clearmap/style.json b/public/stylejson/geoservices.un.org/clearmap/style.json
new file mode 100644
index 0000000..08ed7cd
--- /dev/null
+++ b/public/stylejson/geoservices.un.org/clearmap/style.json
@@ -0,0 +1,21 @@
+{
+ "version": 8,
+ "sources": {
+ "un_clearmap": {
+ "type": "raster",
+ "tiles": [
+ "https://geoservices.un.org/arcgis/rest/services/ClearMap_WebTopo/MapServer/tile/{z}/{y}/{x}"
+ ],
+ "attribution": "UN Geospatial"
+ }
+ },
+ "layers": [
+ {
+ "id": "un_clearmap",
+ "source": "un_clearmap",
+ "type": "raster",
+ "maxzoom": 6,
+ "minzoom": 0
+ }
+ ]
+}
diff --git a/src/App.tsx b/src/App.tsx
index 1abaf7d..fbb9e98 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,7 +1,8 @@
import './App.css'
-import { ArcGisWorldImagery } from './components/ArcGisWorldImagery'
+import { ArcGISWorldImagery } from './components/ArcGISWorldImagery'
import { OpenStreetMapFrHotRaster } from './components/OpenStreetMapFrHotRaster'
import { OpenStreetMapOrgRaster } from './components/OpenStreetMapOrgRaster'
+import { UNClearMapRaster } from './components/UNClearMapRaster'
function App() {
return (
@@ -13,9 +14,10 @@ function App() {
display: 'flex',
flexDirection: 'column',
}}>
+