If you are loading with google.charts.load(), and you load '45' or 'upcoming', you can now add a property to specify a mapsApiKey that you set up for your application. This is instead of using the generic key that will result in throttling for your users, and a message in your console.
We need to add documentation for how to do this, but until then, here is a very rough outline: Read the docs at https://developers.google.com/maps/documentation/javascript/get-api-key to find out how to get your own key. When using Google Charts, your code will look something like this: var myMapsApiKey = 'SomeMagicToSetThis'; google.charts.load('45', { mapsApiKey: myMapsApiKey, packages: [ 'geochart'] }); On Sun, Aug 7, 2016 at 6:42 PM, Kenneth Kousen <[email protected]> wrote: > Is there any resolution for this yet? I'm still stuck with something that > used to work fine, and flashes a map but then gives the MissingKeyMapError. > > I tried generating a key for localhost and appending it to the jsapi call, > but nothing changed. > > Please help. > > Ken > > On Thursday, July 7, 2016 at 12:17:37 PM UTC-4, Luca Ricci wrote: >> >> I was using Google Charts with Geomap to display stats on >> users provenance and started giving me "Google Maps API error: >> MissingKeyMapError", but I'm not using Google Maps API, am I? >> Should I activate an API Key for Google Maps API or is a temporary >> problem of Google Chats due to the recent change of policy for Google Maps >> API that now require an API Key to work? >> If I should activate an API Key which type of Key should I enable (Google >> Maps JavaScript API, Google Static Maps API, Google Maps Embed API, Google >> Maps Geocoding API, ...)? >> >> Thank in advance for your help. >> > -- > You received this message because you are subscribed to the Google Groups > "Google Visualization API" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to google-visualization-api@ > googlegroups.com. > Visit this group at https://groups.google.com/ > group/google-visualization-api. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/google-visualization-api/fc26337f-ef7a-4c74-8acf- > 906d2f7d3aa0%40googlegroups.com > <https://groups.google.com/d/msgid/google-visualization-api/fc26337f-ef7a-4c74-8acf-906d2f7d3aa0%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- Daniel LaLiberte <https://plus.google.com/100631381223468223275?prsrc=2> [email protected] <[email protected]> 5CC, Cambridge MA -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-visualization-api. To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJPv%2Bf%3DpmPMWk91-x7rp_bODh6EShW7it_h0FoQjpOEtFQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
