> I've uplaoded the html file with the javascript, that I have worked on
> so far:www.iborough.co.uk/tourfilter.html

It might be easier to get a 'straight' API book but nevertheless ...

I guess the stumbling block at the moment is getting the 'city' select
drop-down to actually do something to the map.

Firebug tells me the loadData() function is getting called when the
select box is changed, but it fails "_gel is not defined".

Looking at the rest of the code, I'd guess _gel is supposed to point
to a <div> or something to display status information.
If we actually look in the HTML, there's a
    <span id="status"> ...
that looks like the right place.

Untested, but if you try
    var _gel ;
in global context, and then in your loadMap() function point it at the
<span>
    _gel =  = document.getElementById('status');
you should now have a target for your code to work on.

You'll probably want to get a browser javascript debugger while
working on this project.

cheers, Ross K.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to