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

varis darasirikul
varis darasirikul
10,832 Points

Troubles with google maps Challenge task 2

On line 13, set the "address" key in the "geocoderOptions" to "Magic Kingdom, Disney World" And i already wrote this below.

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

it doesnΒ΄t work. and i don't know what wrong? and this is link to a Challenge task (task 2) http://teamtreehouse.com/library/build-an-interactive-website/google-maps-integration/adding-point-markers-to-a-map-geocoding

2 Answers

Tom Mertz
Tom Mertz
15,254 Points

Hi Varis,

Try typing it out exactly like the questions asked, maybe that's your problem:

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

Good luck!