1

関連する Google ジオコーディング ドキュメント: https://developers.google.com/maps/documentation/geocoding/#Types

Google 独自の Geocoding 開発者向けドキュメントには、次のような情報を返す例が示されています。

    <address_component>
        <long_name>Santa Clara</long_name>
        <short_name>Santa Clara</short_name>
        <type>administrative_area_level_2</type>
        <type>political</type>
    </address_component>

ただし、その例に対応する URL を使用すると、以下を含む XML が返されます。

<address_component>
   <long_name>Santa Clara County</long_name>
   <short_name>Santa Clara County</short_name>
   <type>administrative_area_level_2</type>
   <type>political</type> 
</address_component>

郡名の末尾に「郡」が追加されていることに注意してください。

これが意図的なものかどうかは誰にもわかりませんか?先週追加された「郡」を見た記憶がありません。

これは文書化された変更ですか?

4

0 に答える 0