如何使用java android读取KML文件

时间:2012-07-23 10:25:21

标签: android xml xml-parsing kml android-xml

我想读取Android移动目录(SD卡)上存在的KML文件,我想从该文件中获取信息并将其显示在屏幕上。

这是我的KML文件:

<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2"          xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
    <Placemark>
        <name>Simple placemark</name>
        <description>Attached to the ground. Intelligently places itself at the
              height of the underlying terrain.</description>    
        <Point>
            <coordinates>-122.0822035425683,37.42228990140251,0</coordinates>
        </Point>
    </Placemark>
  </kml>

1 个答案:

答案 0 :(得分:2)

解析XML时解析它。这是我的看法。 希望这有帮助:https://gist.github.com/3163006