I search an address by google map AutocompleteService with param language=zh
(Chinese) and this is the address_components
it give me :
[
{"long_name":"25","short_name":"25","types":["street_number"]},
{"long_name":"Nordallee","short_name":"Nordallee","types":["route"]},
{"long_name":"München","short_name":"München","types": ["locality","political"]},
{"long_name":"Oberbayern","short_name":"Oberbayern","types":["administrative_area_level_2","political"]},
{"long_name":"Bayern","short_name":"BY","types":["administrative_area_level_1","political"]},
{"long_name":"德国","short_name":"DE","types":["country","political"]},
{"long_name":"85356","short_name":"85356","types":["postal_code"]}
]
Only country
type has the long_name
in Chinese. How can I get long_name
of types locality, administrative_area_level_2, and administrative_area_level_1
in Chinese too?