TMaps - Mapping API Tunisia
🏠 Real Estate Agencies Use case · ImmoPlus Tunisie

Geocode Your Real Estate Listings with Precision Using TMaps

94% accuracy on Tunisian addresses for your property listings.

Endpoints used

POST /geocoding/forward GET /geocoding/nearby GET /maps/static
Geocoding accuracy
94%

on Tunisian addresses

Properties geocoded
1 200

in the active catalog

Contact rate
+38%

since adding the map view

Interactive Demo

Click markers to view details · Map powered by TMaps

ImmoPlus Tunisie

ImmoPlus Tunisie displays its 1,200 listings on an interactive map by converting each address to GPS coordinates using the TMaps Geocoding API. Buyers instantly visualize properties, filter by neighborhood and calculate distances to schools or hospitals.

Code Example
// GĂ©ocodage d'annonces — API TMaps
const results = await Promise.all(
  properties.map(async (p) => {
    const res = await fetch(
      `https://api.tmaps.tn/geocoding/forward` +
      `?q=${encodeURIComponent(p.address)}` +
      `&country=TN` +
      `&api_key=YOUR_KEY`
    );
    const { lat, lng, confidence } = await res.json();
    return { ...p, lat, lng, confidence };
  })
);
// Exemple de réponse :
// { lat: 36.8382, lng: 10.2264, confidence: 0.96 }

How It Works

1

🏠 Address geocoding

Each property address is submitted to the TMaps Geocoding API which returns GPS coordinates with a confidence score.

POST /geocoding/forward
2

🔍 Nearby search

The Nearby API identifies schools, shops and transit around each property to enrich the listing page.

GET /geocoding/nearby
3

đŸ–Œïž Static map thumbnail

A static map image is generated for each listing: ideal for emails and search result previews.

GET /maps/static

Ready to integrate TMaps into your project?

Start free with 50,000 requests offered every month. No credit card required.

Read the documentation →