How to get google map AutocompleteService result in selected language?
up vote
1
down vote
favorite
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?
google-maps google-maps-api-3
add a comment |
up vote
1
down vote
favorite
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?
google-maps google-maps-api-3
According to this doc the language code for Chinese (simplified) should bezh-CN
. That said, I don't think you can expect every component to be translated. City names might be translated in some places/countries, but I don't think you'll ever get a street name translated into Chinese.
– MrUpsidown
Nov 9 at 10:04
I try to test withja (Japanese)
but still only country names were translated. Actually, what I want is city names and countries name, so I only ask forlocality, administrative_area_level_2, and administrative_area_level_1
– Hai Hoang
Nov 9 at 10:53
1
If I search for Shanghai, I get上海市, 中国
and for Tokyo, I get东京都, 日本
and that seems to work for many places around the world including Europe, America, etc. But searching for an address then the only translated component seems to be the country name.
– MrUpsidown
Nov 9 at 11:11
Some reading: issuetracker.google.com/issues/35821399 and stackoverflow.com/questions/27567757/… although it might not answer your question...
– MrUpsidown
Nov 9 at 11:30
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
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?
google-maps google-maps-api-3
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?
google-maps google-maps-api-3
google-maps google-maps-api-3
edited Nov 9 at 9:06
asked Nov 9 at 8:57
Hai Hoang
345313
345313
According to this doc the language code for Chinese (simplified) should bezh-CN
. That said, I don't think you can expect every component to be translated. City names might be translated in some places/countries, but I don't think you'll ever get a street name translated into Chinese.
– MrUpsidown
Nov 9 at 10:04
I try to test withja (Japanese)
but still only country names were translated. Actually, what I want is city names and countries name, so I only ask forlocality, administrative_area_level_2, and administrative_area_level_1
– Hai Hoang
Nov 9 at 10:53
1
If I search for Shanghai, I get上海市, 中国
and for Tokyo, I get东京都, 日本
and that seems to work for many places around the world including Europe, America, etc. But searching for an address then the only translated component seems to be the country name.
– MrUpsidown
Nov 9 at 11:11
Some reading: issuetracker.google.com/issues/35821399 and stackoverflow.com/questions/27567757/… although it might not answer your question...
– MrUpsidown
Nov 9 at 11:30
add a comment |
According to this doc the language code for Chinese (simplified) should bezh-CN
. That said, I don't think you can expect every component to be translated. City names might be translated in some places/countries, but I don't think you'll ever get a street name translated into Chinese.
– MrUpsidown
Nov 9 at 10:04
I try to test withja (Japanese)
but still only country names were translated. Actually, what I want is city names and countries name, so I only ask forlocality, administrative_area_level_2, and administrative_area_level_1
– Hai Hoang
Nov 9 at 10:53
1
If I search for Shanghai, I get上海市, 中国
and for Tokyo, I get东京都, 日本
and that seems to work for many places around the world including Europe, America, etc. But searching for an address then the only translated component seems to be the country name.
– MrUpsidown
Nov 9 at 11:11
Some reading: issuetracker.google.com/issues/35821399 and stackoverflow.com/questions/27567757/… although it might not answer your question...
– MrUpsidown
Nov 9 at 11:30
According to this doc the language code for Chinese (simplified) should be
zh-CN
. That said, I don't think you can expect every component to be translated. City names might be translated in some places/countries, but I don't think you'll ever get a street name translated into Chinese.– MrUpsidown
Nov 9 at 10:04
According to this doc the language code for Chinese (simplified) should be
zh-CN
. That said, I don't think you can expect every component to be translated. City names might be translated in some places/countries, but I don't think you'll ever get a street name translated into Chinese.– MrUpsidown
Nov 9 at 10:04
I try to test with
ja (Japanese)
but still only country names were translated. Actually, what I want is city names and countries name, so I only ask for locality, administrative_area_level_2, and administrative_area_level_1
– Hai Hoang
Nov 9 at 10:53
I try to test with
ja (Japanese)
but still only country names were translated. Actually, what I want is city names and countries name, so I only ask for locality, administrative_area_level_2, and administrative_area_level_1
– Hai Hoang
Nov 9 at 10:53
1
1
If I search for Shanghai, I get
上海市, 中国
and for Tokyo, I get 东京都, 日本
and that seems to work for many places around the world including Europe, America, etc. But searching for an address then the only translated component seems to be the country name.– MrUpsidown
Nov 9 at 11:11
If I search for Shanghai, I get
上海市, 中国
and for Tokyo, I get 东京都, 日本
and that seems to work for many places around the world including Europe, America, etc. But searching for an address then the only translated component seems to be the country name.– MrUpsidown
Nov 9 at 11:11
Some reading: issuetracker.google.com/issues/35821399 and stackoverflow.com/questions/27567757/… although it might not answer your question...
– MrUpsidown
Nov 9 at 11:30
Some reading: issuetracker.google.com/issues/35821399 and stackoverflow.com/questions/27567757/… although it might not answer your question...
– MrUpsidown
Nov 9 at 11:30
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53222553%2fhow-to-get-google-map-autocompleteservice-result-in-selected-language%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
According to this doc the language code for Chinese (simplified) should be
zh-CN
. That said, I don't think you can expect every component to be translated. City names might be translated in some places/countries, but I don't think you'll ever get a street name translated into Chinese.– MrUpsidown
Nov 9 at 10:04
I try to test with
ja (Japanese)
but still only country names were translated. Actually, what I want is city names and countries name, so I only ask forlocality, administrative_area_level_2, and administrative_area_level_1
– Hai Hoang
Nov 9 at 10:53
1
If I search for Shanghai, I get
上海市, 中国
and for Tokyo, I get东京都, 日本
and that seems to work for many places around the world including Europe, America, etc. But searching for an address then the only translated component seems to be the country name.– MrUpsidown
Nov 9 at 11:11
Some reading: issuetracker.google.com/issues/35821399 and stackoverflow.com/questions/27567757/… although it might not answer your question...
– MrUpsidown
Nov 9 at 11:30