đșïž Interactive citizen map
Municipal services (town hall, post office, health center, school) are displayed on a map accessible to citizens via browser or mobile app.
GET /maps/tiles/{z}/{x}/{y} Interactive citizen maps, optimized collection routes and geolocated local services.
Endpoints used
GET /maps/tiles/{z}/{x}/{y} POST /routing/optimized GET /geocoding/nearby Greater Tunis â demo
municipal agents
online service access
Click markers to view details · Map powered by TMaps
MunicipalTN
MunicipalTN supports several Greater Tunis municipalities in their digital transformation. With the TMaps API, citizens find the nearest municipal service, agents optimize their waste collection routes, and elected officials have a map view of ongoing interventions.
// Services de proximitĂ© â API TMaps
// Trouver les services municipaux proches
const services = await fetch(
'https://api.tmaps.tn/geocoding/nearby' +
'?lat=36.8200&lng=10.1900' +
'&radius=2000' +
'&categories=municipality,health,education' +
'&api_key=YOUR_KEY'
);
const { results } = await services.json();
// â [
// { name: 'Mairie de Tunis', distance: 340, lat: ..., lng: ... },
// { name: 'Poste de santé', distance: 820, lat: ..., lng: ... },
// ...
// ]Municipal services (town hall, post office, health center, school) are displayed on a map accessible to citizens via browser or mobile app.
GET /maps/tiles/{z}/{x}/{y} The citizen enters their address; the Nearby API returns the closest municipal services with distances and opening hours.
GET /geocoding/nearby Collection or inspection rounds for communal agents are calculated by the Routing API to minimize kilometers traveled.
POST /routing/optimized Start free with 50,000 requests offered every month. No credit card required.
Read the documentation â