Geocoding, Routing und erweiterte Standortsuche für moderne Anwendungen. Integrieren Sie professionelle Kartenfunktionen mit wenigen Zeilen Code.
Diese API erfordert einen gültigen API-Token. Tokens können in Ihrem Profil unter Profil → API-Token erzeugt und verwaltet werden.
🔑 Token-Übermittlungsmöglichkeiten:
Authorization: Bearer YOUR_API_TOKEN
?token=YOUR_API_TOKEN (Query-Parameter)
X-API-Token: YOUR_API_TOKEN (Header)
token=YOUR_API_TOKEN (POST/PUT Body)
Basis-URL: https://leads.creativeskyline.com/api/maps
/api/maps/search
Sucht nach Standorten, Adressen, Geschäften und Points of Interest weltweit.
q - Suchbegriff (Stadt, Adresse, POI)
limit - Anzahl Ergebnisse (Standard: 10, Max: 10)
country - Länder-Filter (ISO 3166-1 alpha-2)
/api/maps/geocode
Konvertiert Adressen in GPS-Koordinaten (Forward Geocoding) oder umgekehrt (Reverse Geocoding).
address - Adresse → GPS-Koordinaten
lng + lat - GPS → Adresse
Hinweis: Verwenden Sie entweder address ODER lng+lat Parameter.
/api/maps/directions
Berechnet optimale Routen zwischen mehreren Punkten mit detaillierten Wegbeschreibungen.
origin - Startpunkt (lng,lat)
destination - Zielpunkt (lng,lat)
profile - Verkehrsmittel (driving, driving-traffic, walking, cycling)
waypoints - Zwischenstopps (durch | getrennt)
Autoroute (Standard)
Fußgänger-Route
Fahrrad-Route
curl "https://leads.creativeskyline.com/api/maps/search?q=Brandenburger Tor Berlin&limit=5" \ -H "Authorization: Bearer YOUR_API_TOKEN"
curl "https://leads.creativeskyline.com/api/maps/geocode?address=Alexanderplatz 1, Berlin"
curl "https://leads.creativeskyline.com/api/maps/geocode?lng=13.4050&lat=52.5200"
curl "https://leads.creativeskyline.com/api/maps/directions?origin=13.4050,52.5200&destination=13.0500,52.2000&profile=driving"
fetch('https://leads.creativeskyline.com/api/maps/search?q=Berlin')
.then(response => response.json())
.then(data => {
data.results.forEach(location => {
console.log(location.name, location.lat, location.lon);
});
});
{
"success": true,
"results": [
{
"name": "Berlin",
"display_name": "Berlin, Deutschland",
"lat": 52.5200066,
"lon": 13.404954,
"type": "city",
"importance": 0.9,
"country": "Deutschland",
"country_code": "de",
"state": "Berlin",
"postcode": "10115",
"bbox": [13.0883, 52.3387, 13.7611, 52.6755]
}
],
"count": 1,
"query": "Berlin"
}