Urigo / meteor-angular-socially

angular-meteor example and tutorial app
https://www.angular-meteor.com/tutorials/socially/angular1/bootstrapping
155 stars 143 forks source link

Google Map didn't load at 16.10 #130

Closed TaymozL closed 8 years ago

TaymozL commented 8 years ago

The google map didn't load correctly in PartyDetails page at 16.10. Says "Google Maps API Error : MissingKeyMapError " in console and the map in page goes "Oops! Something went wrong. This page didn't load Google Maps correctly. See the JavaScript console for technical details."

Displays well after adding PartiesMap in main page at end of step 16.

BrianPhilips commented 8 years ago

Google now requires you to have an API key to make requests.

To fix this error include the following tag inside the head section in client/Index.html

<script src="https://maps.googleapis.com/maps/api/js?key=yourKEYhere"></script>

Get your key here: GoogleApiKey Generation site

DAB0mB commented 8 years ago

@TaymozL Thank you for the issue @BrianPhilips Thank you very much for the solution, I am now adding a new step and hopefully the documentation will be updated asap.