🛰️ Core Endpoints
🔍 Search (Forward Geocoding)
- Endpoint:
GET /search - Example (New York):
https://apimaps.evegram.org/search?q=Times+Square+New+York&limit=1
📍 Reverse Geocoding
- Endpoint:
GET /reverse - Example (New York Coordinates):
https://apimaps.evegram.org/reverse?lat=40.7580&lon=-73.9855
🛣️ Routing Engine
- Endpoint:
POST /route - Example Payload (JFK Airport to Times Square):
{
"locations": [
{"lat": 40.6413, "lon": -73.7781, "type": "break"},
{"lat": 40.7580, "lon": -73.9855, "type": "break"}
],
"costing": "auto",
"units": "kilometers"
}