Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML Build an Interactive Website Google Maps Integration Adding a Dynamic Map

Daan Hage
Daan Hage
13,318 Points

Can anyone complete this course? I keep failing because of the API key dat doesn't work.

It sucks, because this is the only one gettingin the way of my achievement!

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Map</title>
    <style type="text/css">
    body, html {
        margin:0;
        padding:0;
    }
    body, html, #map {
        width:100%;
        height:100%;
    }
    </style>
</head>
<body>
    <script type="text/javascript"
      src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&sensor=false"></script>

    <script type="text/javascript">
        var mapOptions = {};

        var mapElement;
        var theMap;
    </script>
</body>
</html> 

1 Answer

Ken Alger
STAFF
Ken Alger
Treehouse Teacher

Daan;

Please see this discussion on this topic.

Treehouse is aware of the issue.

Ken