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

JavaScript

Code Challenge: Adding Point Markers to a Map: Geocoding 1/2

The instructions for this are confusing.

In "app.js" on line 11 set "geocoder" to a new google.maps namespaced "Geocoder" object

This is the provided code with where I've put what I think it's asking me for. It says to add the code on line 11, but the javascript is further down starting on line 18. I've tried adding the var geocoder = new google.maps.Geocoder(); up at line 11 and down inside of app.js. Neither work.

<!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>
    <div id="map"></div>
    <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAn8fk75K8kCdW6pQ4B7yoBHJNrUbleieY&sensor=false"></script>
    <script type="text/javascript" src="app.js">
        var geocoder = new google.maps.Geocoder();
  </script>
</body>
</html>

Disregard. I was adding the code to the wrong file.