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

General Discussion

Alessandro Muraro
Alessandro Muraro
15,457 Points

Adding point markers - 4/6

Hello everyone, I've been studying Google's Maps APIs a bit, and trying to solve the challeng. I get stuck at 4/6, This is where I'm at

var mapOptions = { center: new google.maps.LatLng(28.42, -81.58), zoom: 18, mapTypeId: google.maps.MapTypeId.SATELLITE };

var mapElement = document.getElementById("map"); var theMap = new google.maps.Map(mapElement, mapOptions); var markers = new Array();

var geocoder = new google.maps.Geocoder(); var bounds = new google.maps.LatLngBounds;

var geocoderOptions = {address: 'Magic Kingdom, Disney World'};

geocoder.geocode(geocoderOptions, function(results, status){ if(status == google.maps.GeocoderStatus.OK) markers.push(new google.maps.Marker(map: theMap, position: results[0]); });

And I don't get what I'm doing wrong, task 1 is not passing no more, and I'm not sure how to proceed here, any help is welcome :)

2 Answers