I developed an application that uses google maps javascript API V3.
Previously the structure of google.maps.DirectionsResult object (First
parameter of google.maps.DirectionsService.route callback) was:
Gf: {
avoidHighWays: false,
...
destination: { Ma: '<Lat>', Na: '<Lng>', ... }
....
}
routes: [ { google.maps.DirectionsRoute object } ]
status: "OK"
Apparently it seems to be trimmed down copy of
google.maps.DirectionsRequest object.
Now suddenly, I do not know when, this is changed into:
Vf: {
avoidHighWays: false,
...
destination: { Pa: '<Lat>', Qa: '<Lng>', ... }
....
}
routes: [ { google.maps.DirectionsRoute object } ]
status: "OK"
Gf turned out to Vf, Ma turned out to Pa and Na turned out to Qa
Vf OR Gf is not documented at
http://code.google.com/apis/maps/documentation/javascript/reference.html#DirectionsResult
--
You received this message because you are subscribed to the Google Groups
"Google Maps JavaScript API v3" 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-js-api-v3?hl=en.