GeoCoordinates
ビジネス拠点の地理データ(緯度、経度、住所など)。
JSON 表現 |
{
"latitude": number,
"longitude": number,
// Union field addresses can be only one of the following:
"address": {
object (PostalAddress )
},
"unstructuredAddress": string
// End of list of possible types for union field addresses .
} |
フィールド |
latitude |
number
緯度。(省略可)
|
longitude |
number
経度。(省略可)
|
共用体フィールド addresses 。ビジネス拠点の住所。構造化されている住所とされていない住所が可能で、addresses は次のいずれかになります。 |
address |
object (PostalAddress )
ビジネス拠点の、郵便物の送付先となる住所(推奨)。
|
unstructuredAddress |
string
非構造化住所(例: 1600 amphitheatre parkway mountain view, ca 94043)
|
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-10-18 UTC。
[null,null,["最終更新日 2024-10-18 UTC。"],[[["The Geo data of a location includes latitude, longitude, and address, represented in JSON format."],["Address can be provided in a structured format using `address` field (PostalAddress object) or an unstructured format using `unstructuredAddress` field (string)."],["Latitude and longitude are represented as numbers in degrees and are optional fields within the Geo data."]]],[]]