You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-map...@googlegroups.com
i'm 95% done with my project and everything's in v3.
it's gonna be too much of a hassle and i'm running out of time. so i will skip this part and use marker and infoWindow to make some alternatives.
geoco...@gmail.com
unread,
Sep 15, 2011, 12:14:23 AM9/15/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Maps JavaScript API v3
On Sep 15, 12:09 am, Dan <d.chen0...@gmail.com> wrote:
> i'm 95% done with my project and everything's in v3.
The point is that you _can_ do it in v3, but it requires more work
than v2.
-- Larry
Dan
unread,
Sep 15, 2011, 12:20:02 AM9/15/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-map...@googlegroups.com
Is there an example other than the description of DirectionsLegs in the v3 API reference?
MymsMan
unread,
Sep 15, 2011, 7:21:14 AM9/15/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-map...@googlegroups.com
Thats brilliant! I hadn't realised that you could change the results returned by the directions service and that the Renderer would use the changed text. Its obvious really but I'm getting old! :-)
So it is trivial to update what will be displayed;
var directs = dirObj.Rend.getDirections(); var leg = directs.routes[0].legs[0]; leg.start_address='My Start address'; leg.end_address='My end address';