Forward Geocoding
Convert Addresses and place names into Geo-Features
Examples
https://api.cartesius.io/beta/forward?apiKey=<YOUR_API_KEY>&q=Platz d. Deutschen Einheit 4, 20457 HHimport { CartesiusClient } from "@cartesius/sdk"
const client = new CartesiusClient({
apiKey: '<YOUR-API-KEY>',
});
const result = await client.forward("Platz d. Deutschen Einheit 4, 20457 HH");https://api.cartesius.io/beta/forward?apiKey=<YOUR_API_KEY>&languages=de,en,es& categories=amenity:restaurant,highway&bbox=9.65,53.38,10.33,53.75&q=Platz d. Deutschen Einheit 4, 20457 HHimport { CartesiusClient } from "@cartesius/sdk"
const client = new CartesiusClient({
apiKey: '<YOUR-API-KEY>',
});
const result = await client.forward("Platz d. Deutschen Einheit 4, 20457 HH",
{
languages: ["deu", "en", "es"], // ISO 3166 ALPHA-2 or ALPHA-3
fields: ["shape", "displayValue", "category"], // fields to return
categories: [{
type: 'amenity',
specfication: 'restaurant'
}, {
type: "highway"
}],
bbox: {
left: 9.65,
bottom: 53.38,
right:10.33,53.75
top: 53.75
},
filter: {
internetAccess: true
}
});Results
Endpoint Documentation
Last updated