ok... i tried adding the hidden div but that didn't help, i'm still getting the 500. one difference i noticed is that i'm using the "loadFromWaypoints" method. is walking not supported when using waypoints? has anyone else tried this?
On Oct 28, 12:37 pm, kevinC <[email protected]> wrote: > Got it. > > We do our own note processing and so we don't target a map nor hidden > directions. > > var oDirections = new GDirections(); > > was resulting in error 500 for GDirections when using WALKING mode. > However: > > var oDirections = new GDirections(null, > document.getElementById("hidden_div")); > > allows us to load the WALKING directions and then process them using > our own handler: > > GEvent.addListener(oDirections, "load", function() { > // .. > }); > > Thanks for all your assistance with this... --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
