Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get Google Map KML data in JSON format

Is there a way to get the KML file attached to this Google Map in JSON format instead of XML?:

I'm currently writing an app that needs to load this KML data. I would prefer that it's in JSON format. Is there a way of getting it in this format?

like image 760
Camsoft Avatar asked Nov 17 '11 18:11

Camsoft


People also ask

How do I read Google Location History JSON?

Import the Data to Location History Visualizer Go to Location History Visualizer, then drag and drop the JSON file from the folder onto the site.


1 Answers

Since KML is just a flavor of XML, you could use any XML to JSON converter, of which there are many.

Here's one that's been around for a few years: http://www.thomasfrank.se/xml_to_json.html

like image 138
yalestar Avatar answered Oct 26 '22 23:10

yalestar