用Javascript读出KML文件

时间:2013-08-03 11:44:25

标签: javascript google-maps-api-3 kml

我有一个城市地区的KML文件,想要用Javascript读取它以便在地图上显示这些叠加(多边形)(Google Maps API v.3)此外我想保存GeoPoints KML文件和对象中区域的名称。 但我不知道该怎么做。愿任何人帮我解决这个问题。 感谢

3 个答案:

答案 0 :(得分:3)

有两种方法可以将KML文件提供给Javascript。

1)用户上传KML文件。在这种情况下,您可以使用JS的File和FileReader API。它仅以HTML5格式提供。这是一个在HTML5中读取文件的示例。

http://www.html5rocks.com/en/tutorials/file/dndfiles/

2)如果KML文件在您的最后或任何其他第三方服务器上。使用Ajax从该服务器获取文件并读入您的JS代码。只需将此文件作为XML读取即可。

var xmlDoc = new DOMParser().parseFromString(ajaxResponse,'text/xml');

在阅读KML文档的两种情况下。您可以将Geopoints对象创建为JSON。

答案 1 :(得分:3)

根据我的理解,您正在寻找 parser 来解析 KML Google API 3返回的响应。

如果是这样,请专门针对Google Maps Javascript API版本3查看kmlmapparser

从文档中看来原始代码的灵感来自:

所以你也可以试试这个。

希望你明白。

答案 2 :(得分:0)

这是紧凑的KML解析器代码。 仅适用于google.maps标记和多边形。

html

<input type='file' accept=".kml,.kmz" onchange="fileChanged()">

脚本,我使用打字稿,但与javascript完全相同

  file: any
  fileChanged(e) {
    this.file = e.target.files[0]
    this.parseDocument(this.file)
  }
  parseDocument(file) {
    let fileReader = new FileReader()
    fileReader.onload = async (e: any) => {
      let result = await this.extractGoogleCoords(e.target.result)

      //Do something with result object here
      console.log(result)

    }
    fileReader.readAsText(file)
  }

  async extractGoogleCoords(plainText) {
    let parser = new DOMParser()
    let xmlDoc = parser.parseFromString(plainText, "text/xml")
    let googlePolygons = []
    let googleMarkers = []

    if (xmlDoc.documentElement.nodeName == "kml") {

      for (const item of xmlDoc.getElementsByTagName('Placemark') as any) {
        let placeMarkName = item.getElementsByTagName('name')[0].childNodes[0].nodeValue.trim()
        let polygons = item.getElementsByTagName('Polygon')
        let markers = item.getElementsByTagName('Point')

        /** POLYGONS PARSE **/        
        for (const polygon of polygons) {
          let coords = polygon.getElementsByTagName('coordinates')[0].childNodes[0].nodeValue.trim()
          let points = coords.split(" ")

          let googlePolygonsPaths = []
          for (const point of points) {
            let coord = point.split(",")
            googlePolygonsPaths.push({ lat: +coord[1], lng: +coord[0] })
          }
          googlePolygons.push(googlePolygonsPaths)
        }

        /** MARKER PARSE **/    
        for (const marker of markers) {
          var coords = marker.getElementsByTagName('coordinates')[0].childNodes[0].nodeValue.trim()
          let coord = coords.split(",")
          googleMarkers.push({ lat: +coord[1], lng: +coord[0] })
        }
      }
    } else {
      throw "error while parsing"
    }

    return { markers: googleMarkers, polygons: googlePolygons }

  }

输出

markers: Array(3)
0: {lat: 37.42390182131783, lng: -122.0914977709329}
...

polygons: Array(1)
0: Array(88)
0: {lat: -37.79825999283025, lng: 144.9165994157198}
...