views:

468

answers:

1

Do you know how can I convert a google walking directions JSON response to KML?

I am using this method to get driving directions from Google in JSON format:

How can I process this and export it to KML to view it on Google Earth? Is there a Java API or something else?

+2  A: 

I think you will be able to tackle this conversion as follows:

  1. You can parse the JSON data from Google using the org.json.JSONObject.

  2. Then to export the KML, you may want to use JAK - Java API for KML. You can also try to do this manually by following the Google KML Documentation.

Daniel Vassallo