I am trying to create a free app for our city to display public transport route info. Our city have placed all the routes at the below URL.
How do I create a Gmap instance to display the content at this URL?
Currently the below code is used to display a map zoomed in on a specific marker:
$('#map_canvas').gmap({ 'center': vars['lat'] + ',' + vars['lon'], 'zoom': 16, 'streetViewControl': false, 'mapTypeControl': false }).bind('init', function() {
$('#map_canvas').gmap('addMarker', { 'foo': 'bar', 'position': vars['lat'] + ',' + vars['lon'] });
});
Thanks for the help!
Regards
Devin