Assigned
Status Update
Comments
an...@google.com <an...@google.com> #2
Yes please :) Along with a more specific definition of how the Popular Times are determined (how much history? done by mobile device activity? check ins?)
su...@google.com <su...@google.com>
jh...@google.com <jh...@google.com>
[Deleted User] <[Deleted User]> #3
Making popular times available by day of the week would be awesome
[Deleted User] <[Deleted User]> #4
It already is Jeffrey, you can toggle by day on mobile or desktop
sh...@gmail.com <sh...@gmail.com> #6
Comment has been deleted.
sh...@gmail.com <sh...@gmail.com> #7
Any one is looking into this issue?
su...@gmail.com <su...@gmail.com> #9
You can change the language of the map in android using following code :
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Locale current = getResources().getConfiguration().locale;
Locale locale = new Locale(current.getLanguage());
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config,
getBaseContext().getResources().getDisplayMetrics());
}
But according tohttps://issuetracker.google.com/u/1/issues/36823099 it won't work for the Hindi Language.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Locale current = getResources().getConfiguration().locale;
Locale locale = new Locale(current.getLanguage());
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config,
getBaseContext().getResources().getDisplayMetrics());
}
But according to
an...@google.com <an...@google.com>
ra...@gmail.com <ra...@gmail.com> #10
Comment has been deleted.
jh...@google.com <jh...@google.com>
rc...@skylinedynamics.com <rc...@skylinedynamics.com> #11
No update on here for a while now... Any news on making this available ?
ta...@gmail.com <ta...@gmail.com> #13
+1
be...@gmail.com <be...@gmail.com> #14
News? it would be awesome :)
jh...@google.com <jh...@google.com>
[Deleted User] <[Deleted User]> #15
This would be great, we could use for some cool analytics applications...
[Deleted User] <[Deleted User]> #16
Would be great to see this opened up so we could use it in app development in iOS and Android.
by...@gmail.com <by...@gmail.com> #17
Hi, those data would be definitely usefull to enable new services like shopping day optimizer and many more.
ka...@gmail.com <ka...@gmail.com> #18
Any updates?
Description
# It is OK to share your API Project ID, but _not_ API keys.
Feature Request
-----------------------
What would you like to see us add to this API?
The ability to set regional bias in Google Maps Android API programmatically. This can be easily achieved in the Maps JavaScript API, but it looks like in Google Maps Android API there is no way to set regional bias programmatically.
Explain your use case for that feature:
At first glance it looks like the Locale.setDefault(locale) should work. However, our tests show that is not working. Setting for example Locale.setDefault(new Locale("en", "KR")); doesn't force the Korean labels and tiles reliably.
Can you provide us a reliable method to force a regional bias in Maps Android API?