Pahang Go — Map Tile Server
A small proxy that serves XYZ raster tiles from several upstream providers behind one consistent route, adding the required auth headers server-side so API keys never reach the browser.
Endpoints
| Method | Path | Description |
|---|---|---|
| GET | https://tiles.pahanggo.com/providers |
Lists the available provider names as JSON. |
| GET | https://tiles.pahanggo.com/tiles/{provider}/{x}/{y}/{z}.png |
Proxies a single tile from the given provider for the requested x/y/z, returning the upstream image bytes. |
Providers
| Name | Notes |
|---|---|
satelite |
ArcGIS World Imagery satellite basemap. |
grayscale |
Stadia Maps Alidade Smooth, authenticated via a Stadia-Auth header. |
street |
Mapbox Streets v11 vector-derived raster tiles. |
percipitate |
OpenWeatherMap precipitation radar. {s} is a random subdomain (a–h); {d} is a timestamp ~8h10m in the past. |
Usage with Leaflet
L.tileLayer('https://tiles.pahanggo.com/tiles/street/{x}/{y}/{z}.png', {
attribution: '...',
}).addTo(map);
Live samples — Malaysia
Each box below is an independent Leaflet map centered on Malaysia, one per provider.
Satelite
https://tiles.pahanggo.com/tiles/satelite/{x}/{y}/{z}.png
Grayscale
https://tiles.pahanggo.com/tiles/grayscale/{x}/{y}/{z}.png
Street
https://tiles.pahanggo.com/tiles/street/{x}/{y}/{z}.png
Percipitate
https://tiles.pahanggo.com/tiles/percipitate/{x}/{y}/{z}.png