0

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>
4

1 に答える 1

2

XML を解析するように解析するだけです。これが私の見解です。この助けを願っています: https://gist.github.com/3163006

于 2012-07-23T10:38:34.040 に答える