

Die vorliegende Übersetzung wurde maschinell erstellt. Im Falle eines Konflikts oder eines Widerspruchs zwischen dieser übersetzten Fassung und der englischen Fassung (einschließlich infolge von Verzögerungen bei der Übersetzung) ist die englische Fassung maßgeblich.

# Wie benutzt man ReverseGeocode
<a name="reverse-geocode-how-to"></a>

Dieser Abschnitt enthält eine Vielzahl von Anleitungen und Anwendungsbeispielen ReverseGeocode APIs.

**Topics**
+ [So kehren Sie die Geokodierung für eine Position um](how-to-reverse-geocode-position.md)
+ [So kehren Sie die Geokodierung um, um ein korrektes Ergebnis zu erzielen](reverse-geocode-filter-right-result.md)
+ [So kehren Sie Geokodierung in einer bestimmten Sprache um](how-to-reverse-geocode-specific-language.md)
+ [So kehren Sie die Geokodierung für die Zeitzone einer Stadt um](how-to-reverse-geocode-timezone.md)
+ [Wie man Geokodierung mit einer politischen Sichtweise rückgängig macht](reverse-geocode-political-view.md)
+ [Wie man Kreuzungen bekommt](reverse-how-to-get-intersections.md)

# So kehren Sie die Geokodierung für eine Position um
<a name="how-to-reverse-geocode-position"></a>

Mit der Reverse Geocode API können Sie einen Geocode auf der Grundlage einer Positionsabfrage in ein geografisches Gebiet konvertieren. Die API-Antwort enthält Ortsdetails und enthält Informationen über den Standort, der bestimmten Koordinaten zugeordnet ist.

## Mögliche Anwendungsfälle
<a name="potential-use"></a>
+ **Ortsinformationen speichern:** Fügen Sie Ortsdetails zu einem Datenspeicher hinzu, der Geokoordinaten enthält.
+ **Kartenvisualisierung:** Verwenden Sie Ortsinformationen, um Daten auf einer Karte anzuzeigen.
+ **Erkennung des Benutzerstandorts:** Identifizieren Sie den Standort des Benutzers anhand seiner Geräteposition.

## Geokodieren Sie eine Position rückwärts
<a name="reverse-geocode-position"></a>

------
#### [ Sample request ]

```
{
  "QueryPosition": [
    -123.11694,
    49.28126
  ]
}
```

------
#### [ Sample response ]

```
{
    "ResultItems": [
        {
            "PlaceId": "<Redacted>",
            "PlaceType": "PointAddress",
            "Title": "510 W Georgia St, Vancouver, BC V6B 0M3, Canada",
            "Address": {
                "Label": "510 W Georgia St, Vancouver, BC V6B 0M3, Canada",
                "Country": { "Code2": "CA", "Code3": "CAN", "Name": "Canada" },
                "Region": { "Code": "BC", "Name": "British Columbia" },
                "SubRegion": { "Name": "Metro Vancouver" },
                "Locality": "Vancouver",
                "District": "Downtown Vancouver",
                "PostalCode": "V6B 0M3",
                "Street": "W Georgia St",
                "StreetComponents": [
                    { "BaseName": "Georgia", "Type": "St", "TypePlacement": "AfterBaseName", "TypeSeparator": " ", "Prefix": "W", "Language": "en" }
                ],
                "AddressNumber": "510"
            },
            "Position": [-123.11694, 49.28126],
            "Distance": 0,
            "MapView": [-123.11813, 49.27786, -123.11076, 49.28246],
            "AccessPoints": [
                { "Position": [-123.11656, 49.28151] }
            ]
        }
    ]
}
```

------
#### [ cURL ]

```
curl --request POST \
  --url 'https://places.geo.eu-central-1.amazonaws.com/v2/reverse-geocode?key=Your_Key' \
  --header 'Content-Type: application/json' \
  --data '{
        "QueryPosition": [
            -123.11694,
            49.28126
        ]
}'
```

------
#### [ AWS CLI ]

```
aws geo-places reverse-geocode --key ${YourKey} --query-position "-123.11694,49.28126"
```

------

## Geokodieren Sie eine Position mit mehreren Ergebnissen rückwärts
<a name="reverse-geocode-position-multiple-results"></a>

------
#### [ Sample request ]

```
{
  "QueryPosition": [
    -123.11694,
    49.28126
  ],
  "MaxResults": "3"
}
```

------
#### [ Sample response ]

```
{
    "ResultItems": [
        {
            "PlaceId": "<Redacted>",
            "PlaceType": "PointAddress",
            "Title": "510 W Georgia St, Vancouver, BC V6B 0M3, Canada",
            "Address": { /* Address details */ },
            "Position": [-123.11694, 49.28126],
            "Distance": 0,
            "MapView": [/* Map view details */],
            "AccessPoints": [/* Access point details */]
        },
        {
            "PlaceId": "<Redacted>",
            "PlaceType": "PointOfInterest",
            "Title": "ChargePoint",
            "Address": { /* Address details */ },
            "Position": [-123.11663, 49.28116],
            "Distance": 25,
            "Categories": [/* Category details */],
            "AccessPoints": [/* Access point details */]
        },
        {
            "PlaceId": "<Redacted>",
            "PlaceType": "PointOfInterest",
            "Title": "Zipcar",
            "Address": { /* Address details */ },
            "Position": [-123.11715, 49.28094],
            "Distance": 29,
            "Categories": [/* Category details */],
            "AccessPoints": [/* Access point details */]
        }
    ]
}
```

------
#### [ cURL ]

```
curl --request POST \
  --url 'https://places.geo.eu-central-1.amazonaws.com/v2/reverse-geocode?key=Your_Key' \
  --header 'Content-Type: application/json' \
  --data '{
        "QueryPosition": [
            -123.11694,
            49.28126
        ],
        "MaxResults": "3"
}'
```

------
#### [ AWS CLI ]

```
aws geo-places reverse-geocode --key ${YourKey} --query-position "-123.11694,49.28126" --max-results "3"
```

------

## Tipps für Entwickler
<a name="developer-tips"></a>

Verwenden Sie es `IncludePlaceTypes` im Filter, um gezielte Ergebnisse zu erzielen.

```
{
  "QueryPosition": [
    -123.11694,
    49.28126
  ],
  "Filter": { "IncludePlaceTypes": ["PointAddress"] }
}
```

# So kehren Sie die Geokodierung um, um ein korrektes Ergebnis zu erzielen
<a name="reverse-geocode-filter-right-result"></a>

Dieses Handbuch enthält Methoden zur Verfeinerung der Ergebnisse der umgekehrten Geokodierung, um sicherzustellen, dass die zurückgegebenen Daten genau den spezifischen Geschäftsanforderungen entsprechen. Mithilfe von Filtern können Benutzer die Ergebnisse eingrenzen, sodass sie Typen wie Adresspunkten, Straßen oder Orten genauer entsprechen.

## Mögliche Anwendungsfälle
<a name="reverse-geocode-potential-use"></a>
+ **Schränken Sie die Ergebnisse auf bestimmte Bedürfnisse ein:** Verwenden Sie Filter, um je nach Geschäftsanforderungen nur die relevantesten Informationen abzurufen, z. B. genaue Adressen oder umfassendere Ortsdaten.

## Beispiele
<a name="reverse-geocode-examples"></a>

### Nach einer Punktadresse filtern
<a name="reverse-geocode-point-address"></a>

Durch Filtern nach `PointAddress` können Sie bestimmte Straßenadressen abrufen und so die Standortgenauigkeit verbessern.

------
#### [ Sample Request ]

```
{
    "QueryPosition": [
        -97.721, 30.404
    ],
    "Filter": {
        "IncludePlaceTypes": [
            "PointAddress"
        ]
    }
}
```

------
#### [ Sample Response ]

```
{
    "ResultItems": [
        {
            "PlaceId": "<Redacted>",
            "PlaceType": "PointAddress",
            "Title": "11721 Domain Blvd, Austin, TX 78758-0051, United States",
            "Address": {
                "Label": "11721 Domain Blvd, Austin, TX 78758-0051, United States",
                "Country": {
                    "Code2": "US",
                    "Code3": "USA",
                    "Name": "United States"
                },
                "Region": {
                    "Code": "TX",
                    "Name": "Texas"
                },
                "SubRegion": {
                    "Name": "Travis"
                },
                "Locality": "Austin",
                "District": "North Burnet",
                "PostalCode": "78758-0051",
                "Street": "Domain Blvd",
                "StreetComponents": [
                    {
                        "BaseName": "Domain",
                        "Type": "Blvd",
                        "TypePlacement": "AfterBaseName",
                        "TypeSeparator": " ",
                        "Language": "en"
                    }
                ],
                "AddressNumber": "11721"
            },
            "Position": [
                -97.72087,
                30.404
            ],
            "Distance": 5,
            "MapView": [
                -97.72219,
                30.40273,
                -97.72057,
                30.40649
            ]
        }
    ]
}
```

------
#### [ cURL ]

```
curl --request POST \
  --url 'https://places.geo.eu-central-1.amazonaws.com/v2/reverse-geocode?key=Your_Key' \
  --header 'Content-Type: application/json' \
  --data '{
  "{
    "QueryPosition": [
        -97.721,  30.404
    ],
    "Filter": {
        "IncludePlaceTypes": [
            "PointAddress"
        ]
    }'
```

------
#### [ AWS CLI ]

```
aws geo-places reverse-geocode --key ${YourKey} --query-position -97.721 30.404 --filter '{"IncludePlaceTypes": ["PointAddress"]}'
```

------

### Filtern Sie nach einer Straße
<a name="reverse-geocode-street"></a>

Durch die Filterung nach `Street` gibt die API Daten auf Straßenebene ohne spezifische Adressnummern zurück.

------
#### [ Sample Request ]

```
{
    "QueryPosition": [
        -97.721, 30.404
    ],
    "Filter": {
        "IncludePlaceTypes": [
            "Street"
        ]
    }
}
```

------
#### [ Sample Response ]

```
{
    "ResultItems": [
        {
            "PlaceId": "<Redacted>",
            "PlaceType": "Street",
            "Title": "Domain Blvd, Austin, TX 78758, United States",
            "Address": {
                "Label": "Domain Blvd, Austin, TX 78758, United States",
                "Country": {
                    "Code2": "US",
                    "Code3": "USA",
                    "Name": "United States"
                },
                "Region": {
                    "Code": "TX",
                    "Name": "Texas"
                },
                "SubRegion": {
                    "Name": "Travis"
                },
                "Locality": "Austin",
                "District": "North Burnet",
                "PostalCode": "78758",
                "Street": "Domain Blvd",
                "StreetComponents": [
                    {
                        "BaseName": "Domain",
                        "Type": "Blvd",
                        "TypePlacement": "AfterBaseName",
                        "TypeSeparator": " ",
                        "Language": "en"
                    }
                ]
            },
            "Position": [
                -97.72103,
                30.40399
            ],
            "Distance": 3,
            "MapView": [
                -97.72219,
                30.40273,
                -97.72057,
                30.40649
            ]
        }
    ]
}
```

------
#### [ cURL ]

```
curl --request POST \
  --url 'https://places.geo.eu-central-1.amazonaws.com/v2/reverse-geocode?key=Your_Key' \
  --header 'Content-Type: application/json' \
  --data '{
  "{
    "QueryPosition": [
        -97.721,  30.404
    ],
    "Filter": {
        "IncludePlaceTypes": [
            "Street"
        ]
    }'
```

------
#### [ AWS CLI ]

```
aws geo-places reverse-geocode --key ${YourKey} --query-position -97.721 30.404 --filter '{"IncludePlaceTypes": ["Street"]}'
```

------

### Nach einer Lokalität filtern
<a name="reverse-geocode-locality"></a>

Wenn Sie nach filtern`Locality`, können Sie umfassendere Standortdaten abrufen, einschließlich Städtenamen.

------
#### [ Sample Request ]

```
{
    "QueryPosition": [
        -97.721, 30.404
    ],
    "Filter": {
        "IncludePlaceTypes": [
            "Locality"
        ]
    }
}
```

------
#### [ Sample Response ]

```
{
    "ResultItems": [
        {
            "PlaceId": "<Redacted>",
            "PlaceType": "Locality",
            "Title": "Austin, TX, United States",
            "Address": {
                "Label": "Austin, TX, United States",
                "Country": {
                    "Code2": "US",
                    "Code3": "USA",
                    "Name": "United States"
                },
                "Region": {
                    "Code": "TX",
                    "Name": "Texas"
                },
                "SubRegion": {
                    "Name": "Travis"
                },
                "Locality": "Austin",
                "PostalCode": "78701"
            },
            "Position": [
                -97.74299,
                30.26759
            ],
            "Distance": 0,
            "MapView": [
                -98.06484,
                30.06592,
                -97.55914,
                30.51965
            ]
        }
    ]
}
```

------
#### [ cURL ]

```
curl --request POST \
  --url 'https://places.geo.eu-central-1.amazonaws.com/v2/reverse-geocode?key=Your_Key' \
  --header 'Content-Type: application/json' \
  --data '{
  "{
    "QueryPosition": [
        -97.721,  30.404
    ],
    "Filter": {
        "IncludePlaceTypes": [
            "Locality"
        ]
    }'
```

------
#### [ AWS CLI ]

```
aws geo-places reverse-geocode --key ${YourKey} --query-position -97.721 30.404 --filter '{"IncludePlaceTypes": ["Locality"]}'
```

------

# So kehren Sie Geokodierung in einer bestimmten Sprache um
<a name="how-to-reverse-geocode-specific-language"></a>

 Diese Funktion ermöglicht die Auswahl einer bevorzugten Antwortsprache aus BCP47 -kompatiblen Codes. Es erkennt die Abfragesprache anhand von Namensvarianten und verwendet die bevorzugte Sprache für nicht übereinstimmende Token und mehrdeutige Fälle. Wenn keine Sprache angefragt wird, liefert die **Places-API** Ergebnisse in der offiziellen Landessprache, priorisiert jedoch die Regionalsprache in Regionen, in denen sie sich unterscheidet. Als Ausweichstrategie gibt **Places** APIs Adressen in der Standardsprache zurück, wenn Adresselemente in der angeforderten Sprache nicht verfügbar sind.

## Mögliche Anwendungsfälle
<a name="potential-use-geocode-language"></a>

Ein möglicher Anwendungsfall besteht darin, die Abfrage und and/or das Ergebnis zu lokalisieren.

## Beispiele
<a name="reverse-geocode-language-examples"></a>

### Ergebnis in einer bestimmten Sprache abrufen
<a name="reverse-geocode-language-result"></a>

------
#### [ Sample request ]

```
{
    "QueryPosition": [
                139.69172,
                35.6895
            ],
    "Language": "JA"
}
```

------
#### [ Sample response ]

```
{
    "ResultItems": [
        {
            "PlaceId": "<Redacted>",
            "PlaceType": "PointAddress",
            "Title": "2-8-1 Nishishinjuku, Shinjuku-ku, Tokyo 160-0023, Japan",
            "Address": {
                "Label": "2-8-1 Nishishinjuku, Shinjuku-ku, Tokyo 160-0023, Japan",
                "Country": {
                    "Code2": "JP",
                    "Code3": "JPN",
                    "Name": "Japan"
                },
                "Region": {
                    "Name": "Tokyo"
                },
                "SubRegion": {},
                "Locality": "Shinjuku-ku",
                "SubDistrict": "Nishishinjuku",
                "PostalCode": "160-0023",
                "Block": "2 Chome",
                "SubBlock": "8",
                "AddressNumber": "1"
            },
            "Position": [
                139.69171,
                35.68949
            ],
            "Distance": 1,
            "MapView": [
                139.69071,
                35.68861,
                139.69251,
                35.69048
            ],
            "AccessPoints": [
                {
                    "Position": [
                        139.69206,
                        35.68954
                    ]
                }
            ]
        }
    ]
}
```

------
#### [ cURL ]

```
curl --request POST \
  --url 'https://places.geo.eu-central-1.amazonaws.com/v2/reverse-geocode?key=Your_Key' \
  --header 'Content-Type: application/json' \
  --data '{
    "QueryPosition": [
                139.69172,
                35.6895
            ],
    "Language": "JA"
}'
```

------
#### [ AWS CLI ]

```
aws geo-places reverse-geocode --key ${YourKey} --query-position 139.69172 35.6895 --language "JA"
```

------

# So kehren Sie die Geokodierung für die Zeitzone einer Stadt um
<a name="how-to-reverse-geocode-timezone"></a>

Sie können die Reverse Geocode API verwenden, um Zeitzoneninformationen wie UTC-Offset und Zeitzonenname anzufordern

## Mögliche Verwendung
<a name="reverse-geocode-timezone-uses"></a>

Mögliche Verwendungszwecke für die Geokodierung von Zeitzonen:
+ Erstelle eine Weltzeituhr
+ Planen Sie Besprechungen in verschiedenen Regionen

## Beispiele
<a name="reverse-geocode-timezone-examples"></a>

### Beispiel
<a name="reverse-geocode-timezone-example"></a>

Reverse-Geokodierung eines Standorts in Tokio mit Zeitzonenanforderung.

------
#### [ Sample request ]

```
{
    "QueryPosition": [
        139.69172,
        35.6895
    ],
    "AdditionalFeatures": [
        "TimeZone"
    ]
}
```

------
#### [ Sample response ]

```
{
    "ResultItems": [
        {
            "PlaceId": "<Redacted>",
            "PlaceType": "PointAddress",
            "Title": "〒160-0023 東京都新宿区西新宿2丁目8-1",
            "Address": {
                "Label": "〒160-0023 東京都新宿区西新宿2丁目8-1",
                "Country": {
                    "Code2": "JP",
                    "Code3": "JPN",
                    "Name": "日本"
                },
                "Region": {
                    "Name": "東京都"
                },
                "SubRegion": {},
                "Locality": "新宿区",
                "SubDistrict": "西新宿",
                "PostalCode": "160-0023",
                "Block": "2丁目",
                "SubBlock": "8",
                "AddressNumber": "1"
            },
            "Position": [
                139.69171,
                35.68949
            ],
            "Distance": 1,
            "MapView": [
                139.69071,
                35.68861,
                139.69251,
                35.69048
            ],
            "AccessPoints": [
                {
                    "Position": [
                        139.69206,
                        35.68954
                    ]
                }
            ],
            "TimeZone": {
                "Name": "Asia/Tokyo",
                "Offset": "+09:00",
                "OffsetSeconds": 32400
            }
        }
    ]
}
```

------
#### [ cURL ]

```
curl --request POST \
  --url 'https://places.geo.eu-central-1.amazonaws.com/v2/reverse-geocode?key=Your_Key' \
  --header 'Content-Type: application/json' \
  --data '{
    "QueryPosition": [
                139.69172,
                35.6895
            ],
    "AdditionalFeatures": [
                "TimeZone"
              ]
}'
```

------
#### [ AWS CLI ]

```
aws geo-places reverse-geocode --key ${YourKey} --query-position 139.69172 35.6895 --additional-features "TimeZone"
```

------

# Wie man Geokodierung mit einer politischen Sichtweise rückgängig macht
<a name="reverse-geocode-political-view"></a>

Mit dem Amazon Location Service können Sie eine politische Sichtweise angeben, um sicherzustellen, dass Ihre Bewerbung den lokalen Vorschriften entspricht. Diese Funktion ist nützlich bei der Geokodierung von Orten in umstrittenen Gebieten, in denen Ortsnamen oder Grenzen je nach politischer Einstellung variieren können.

## Mögliche Anwendungsfälle
<a name="reverse-geocode-potential-use"></a>

**Halten Sie sich an die lokalen Richtlinien:** Stellen Sie sicher, dass Ortsnamen und Grenzen den gesetzlichen Anforderungen der ausgewählten politischen Sichtweise entsprechen.

## Beispiele
<a name="reverse-geocode-examples"></a>

### Geokodieren Sie eine umstrittene Position rückwärts
<a name="reverse-geocode-disputed-position"></a>

------
#### [ Sample Request ]

```
{
    "QueryPosition": [
        33.95876,
        45.46824
    ],
    "PoliticalView": "RUS"
}
```

------
#### [ Sample Response ]

```
{
    "ResultItems": [
        {
            "PlaceId": "<Redacted>",
            "PlaceType": "Locality",
            "Title": "Первомайский район, Южный федеральный округ, Россия",
            "Address": {
                "Label": "Первомайский район, Южный федеральный округ, Россия",
                "Country": {
                    "Code2": "RU",
                    "Code3": "RUS",
                    "Name": "Россия"
                },
                "Region": {
                    "Name": "Южный федеральный округ"
                },
                "SubRegion": {
                    "Name": "Республика Крым"
                },
                "Locality": "Первомайский район"
            },
            "Position": [
                33.85939,
                45.7142
            ],
            "Distance": 0,
            "MapView": [
                33.52692,
                45.34303,
                34.12277,
                45.80953
            ],
            "PoliticalView": "RUS"
        }
    ]
}
```

------
#### [ cURL ]

```
curl --request POST \
  --url 'https://places.geo.eu-central-1.amazonaws.com/v2/reverse-geocode?key=Your_Key' \
  --header 'Content-Type: application/json' \
  --data '{
    "QueryPosition": [
        33.95876,
        45.46824
    ],
    "PoliticalView": "RUS"
}'
```

------
#### [ AWS CLI ]

```
aws geo-places reverse-geocode --key ${YourKey} --query-position 33.95876 45.46824 --political-view "RUS"
```

------

# Wie man Kreuzungen bekommt
<a name="reverse-how-to-get-intersections"></a>

ReverseGeocode Die API kann Kreuzungen in der Nähe des angegebenen Standorts abrufen.

## Möglicher Anwendungsfall
<a name="reversed-goecode-intersections-potential-use"></a>

**Ruft alle Kreuzungen in der Nähe ab.**Dies kann von Rettungsdiensten und Lieferkurieren genutzt werden. Notfallfahrzeuge müssen häufig Kreuzungen in der Nähe identifizieren, um eine optimale Positionierung bei der Beantwortung von Anrufen zu gewährleisten. Dies ermöglicht es ihnen, klare Zugangswege und schnellere Reaktionszeiten aufrechtzuerhalten und gleichzeitig die Sichtbarkeit bei mehreren Anflügen zu gewährleisten. In ähnlicher Weise können Lieferdienste Kreuzungsdaten nutzen, um effizientere Parkplätze zu finden, insbesondere in dicht besiedelten Stadtgebieten, in denen das door-to-door Parken begrenzt oder eingeschränkt sein kann.

## Suchen Sie nach Kreuzungen in der Nähe
<a name="get-nearby-intersections"></a>

Kreuzungen werden zurückgegeben, wenn der Ergebnistyp Straße PointAddress, oder ist. InterpolatedAddress Um sicherzustellen, dass Sie Kreuzungen in der Nähe erhalten, legen Sie den `Heading` Parameter oder Filter für Street PointAddress, oder InterpolatedAddress Typen fest.

## Suchen Sie nach Kreuzungen in der Nähe mit Überschrift
<a name="reverse-geocode-intersections-heading-example"></a>

------
#### [ Sample request ]

```
{
   "QueryPosition": [-123.11694, 49.28126],
   "AdditionalFeatures": ["Intersections"],
   "Heading": 45
}
```

------
#### [ Sample response ]

```
{
    "ResultItems": [
        {
            "PlaceId": "<Redacted>",
            "PlaceType": "PointAddress",
            "Title": "510 W Georgia St, Vancouver, BC V6B 0M3, Canada",
            "Address": {
                "Label": "510 W Georgia St, Vancouver, BC V6B 0M3, Canada",
                "Country": {
                    "Code2": "CA",
                    "Code3": "CAN",
                    "Name": "Canada"
                },
                "Region": {
                    "Code": "BC",
                    "Name": "British Columbia"
                },
                "SubRegion": {
                    "Name": "Metro Vancouver"
                },
                "Locality": "Vancouver",
                "District": "Downtown Vancouver",
                "PostalCode": "V6B 0M3",
                "Street": "W Georgia St",
                "StreetComponents": [
                    {
                        "BaseName": "Georgia",
                        "Type": "St",
                        "TypePlacement": "AfterBaseName",
                        "TypeSeparator": " ",
                        "Prefix": "W",
                        "Language": "en"
                    }
                ],
                "AddressNumber": "510"
            },
            "Position": [
                -123.11694,
                49.28126
            ],
            "Distance": 0,
            "MapView": [
                -123.11813,
                49.27786,
                -123.11076,
                49.28246
            ],
            "Intersections": [
                {
                    "PlaceId": "<Redacted>",
                    "Title": "W Georgia St & Richards St, Vancouver, BC V6B, Canada",
                    "Address": {
                        "Label": "W Georgia St & Richards St, Vancouver, BC V6B, Canada",
                        "PostalCode": "V6B",
                        "Intersection": [
                            "W Georgia St",
                            "Richards St"
                        ]
                    },
                    "Position": [
                        -123.11614,
                        49.28124
                    ],
                    "Distance": 58
                },
                {
                    "PlaceId": "<Redacted>",
                    "Title": "W Georgia St & Seymour St, Vancouver, BC V6B, Canada",
                    "Address": {
                        "Label": "W Georgia St & Seymour St, Vancouver, BC V6B, Canada",
                        "PostalCode": "V6B",
                        "Intersection": [
                            "W Georgia St",
                            "W Georgia St",
                            "Seymour St",
                            "Seymour St"
                        ]
                    },
                    "Position": [
                        -123.11712,
                        49.28186
                    ],
                    "Distance": 68
                }
            ]
        }
    ]
}
```

------
#### [ cURL ]

```
curl --request POST \
   --url 'https://places.geo.eu-central-1.amazonaws.com/v2/reverse-geocode?key=Your_Key' \
   --header 'Content-Type: application/json' \
   --data '{
      "QueryPosition": [
         -123.11694, 49.28126
      ],
      "AdditionalFeatures": ["Intersections"],
      "Heading": 45
}
```

------
#### [ AWS CLI ]

```
aws geo-places reverse-geocode --key ${YourKey} --query-position -123.11694, 49.28126 --additional-features "Intersections" --heading 45
```

------

## Suchen Sie mit dem Straßenfilter nach Kreuzungen in der Nähe
<a name="reverse-geocode-intersections-street-example"></a>

------
#### [ Sample request ]

```
{
   "QueryPosition": [-123.11694, 49.28126],
   "AdditionalFeatures": ["Intersections"],
   "Filter": {
       "IncludePlaceTypes": ["Street"]
   }
}
```

------
#### [ Sample response ]

```
{
    "ResultItems": [
        {
            "PlaceId": "<Redacted>",
            "PlaceType": "Street",
            "Title": "W Georgia St, Vancouver, BC V6B, Canada",
            "Address": {
                "Label": "W Georgia St, Vancouver, BC V6B, Canada",
                "Country": {
                    "Code2": "CA",
                    "Code3": "CAN",
                    "Name": "Canada"
                },
                "Region": {
                    "Code": "BC",
                    "Name": "British Columbia"
                },
                "SubRegion": {
                    "Name": "Metro Vancouver"
                },
                "Locality": "Vancouver",
                "District": "Downtown Vancouver",
                "PostalCode": "V6B",
                "Street": "W Georgia St",
                "StreetComponents": [
                    {
                        "BaseName": "Georgia",
                        "Type": "St",
                        "TypePlacement": "AfterBaseName",
                        "TypeSeparator": " ",
                        "Prefix": "W",
                        "Language": "en"
                    }
                ]
            },
            "Position": [
                -123.11694,
                49.28126
            ],
            "Distance": 0,
            "MapView": [
                -123.11813,
                49.27786,
                -123.11076,
                49.28246
            ],
            "Intersections": [
                {
                    "PlaceId": "<Redacted>",
                    "Title": "W Georgia St & Richards St, Vancouver, BC V6B, Canada",
                    "Address": {
                        "Label": "W Georgia St & Richards St, Vancouver, BC V6B, Canada",
                        "PostalCode": "V6B",
                        "Intersection": [
                            "W Georgia St",
                            "Richards St"
                        ]
                    },
                    "Position": [
                        -123.11614,
                        49.28124
                    ],
                    "Distance": 58
                },
                {
                    "PlaceId": "<Redacted>",
                    "Title": "W Georgia St & Seymour St, Vancouver, BC V6B, Canada",
                    "Address": {
                        "Label": "W Georgia St & Seymour St, Vancouver, BC V6B, Canada",
                        "PostalCode": "V6B",
                        "Intersection": [
                            "W Georgia St",
                            "W Georgia St",
                            "Seymour St",
                            "Seymour St"
                        ]
                    },
                    "Position": [
                        -123.11712,
                        49.28186
                    ],
                    "Distance": 68
                }
            ]
        }
    ]
}
```

------
#### [ cURL ]

```
curl --request POST \
   --url 'https://places.geo.eu-central-1.amazonaws.com/v2/reverse-geocode?key=Your_Key' \
   --header 'Content-Type: application/json' \
   --data '{
      "QueryPosition": [
         -123.11694, 49.28126
      ],
      "AdditionalFeatures": ["Intersections"],
      "Filter": {
          "IncludePlaceTypes": ["Street"]
      }
}'
```

------
#### [ AWS CLI ]

```
aws geo-places reverse-geocode --key ${YourKey} --query-position -123.11694, 49.28126 --additional-features "Intersections" --filter '{"IncludePlaceTypes": ["Street"]}'
```

------