cs0815
cs0815

Reputation: 17388

route in google map api

I am using this URI:

http://maps.googleapis.com/maps/api/directions/json?origin= ...

which works fine. I can hydrate a C# Poco from JSON and access data like this:

root.Data.routes[0].legs[0].steps[0].polyline;

The raw data looks like this:

"agoyHx{Xf@k@z@}@TWp@{@j@g@LQ"

What is this and what can I do with this? At the end of the day I would like to draw the route (along streets) on a map.

Upvotes: 0

Views: 101

Answers (1)

Related Questions