Vector Tiles
Arohon provides MapLibre/Mapbox compatible vector tiles for Bangladesh.
Endpoint
GET https://map.arohon.co/tiles/{z}/{x}/{y}
Headers: Authorization: Bearer YOUR_API_KEY
Layers
| Layer | Type | Description |
|---|---|---|
| water | fill | Water bodies |
| roads | line | Road network |
| boundary | line | Administrative |
| buildings | fill | Building footprints |
| poi | circle | Points of interest |
Styling Example
layers: [
{ id: 'water', type: 'fill', source: 'arohon', 'source-layer': 'water', paint: { 'fill-color': '#aad3df' } },
{ id: 'roads', type: 'line', source: 'arohon', 'source-layer': 'roads', paint: { 'line-color': '#019157', 'line-width': 2 } }
]