← Toutes les opérations
POST/v1/navigate/enrich

Attach landmark hints to existing maneuvers

Takes a list of Valhalla maneuvers (each with `begin_shape_index`) and returns the same list enriched with nearby landmarks within 200 m of each turn point — e.g. "Turn right at the orange mosque".

Corps de la requête

Schéma : object

JSONExemple
{
  "maneuvers": [
    {
      "instruction": "Tournez à droite sur le Boulevard Lagunaire",
      "begin_shape_index": 0,
      "lat": 5.3197,
      "lng": -4.0167
    }
  ]
}

Réponses

  • 200Enriched maneuvers.

Exemples de code

curl -X POST https://api.afrimap.ci/v1/navigate/enrich \
  -H "X-AfriMap-Key: $AFM_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "maneuvers": [...], "polyline": "e|w_B}..." }'