在将javascript API加载到Google地图时未显示KML

时间:2019-05-16 10:44:26

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

我想使用GoogleMaps提供的API加载KML文件,但无法使其正常工作。

我有一个KML文件,该文件可以正常工作并在从计算机手动加载到GoogleMaps时显示所有点。但是,当我尝试使用API​​时,它不起作用。我将文件上传到Google驱动器,并使用了Google提供的示例(我仅更改坐标,文件和API密钥)。 我在做什么错了?

<!DOCTYPE html>
<html>
  <head>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
    <meta charset="utf-8">
    <title>GeoRSS Layers</title>
    <style>
      #map {
        height: 100%;
      }
      html, body {
        height: 100%;
        margin: 0;
        padding: 0;
      }
    </style>
  </head>
  <body>
    <div id="map"></div>
    <script>
      function initMap() {
        var map = new google.maps.Map(document.getElementById('map'), {
          zoom: 12,
          center: {lat: 40.45, lng: -3.8}
        });
        var georssLayer = new google.maps.KmlLayer({
          url: 'https://drive.google.com/file/d/1rvb4xvwAZGj4gwrQLH7mjZtPBGzv97WQ',
        });
        georssLayer.setMap(map);
      }
    </script>
    <script async defer
    src="https://maps.googleapis.com/maps/api/js?key=MY_API_KEY&callback=initMap">
    </script>
  </body>
</html>

代码段:

function initMap() {
  var map = new google.maps.Map(document.getElementById('map'), {
    zoom: 12,
    center: {
      lat: 40.45,
      lng: -3.8
    }
  });
  var georssLayer = new google.maps.KmlLayer({
    url: 'https://drive.google.com/open?id=15OVgNwtVbLVARkHJD3F8P_bEfG9oJ4Lu',
  });
  georssLayer.setMap(map);
}
#map {
  height: 100%;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
<title>GeoRSS Layers</title>
<div id="map"></div>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCkUOdZ5y7hMm0yrcCQoCvLwzdM6M8s5qk&callback=initMap">
</script>

1 个答案:

答案 0 :(得分:1)

您使用的Google云端硬盘链接未提供原始KML。
如果我在KmlLayer加载后检查其状态,则会得到INVALID_DOCUMENTfiddle,请检查JavaScript控制台)

the article: Direct linking to your files on Dropbox, Google Drive and OneDrive

  

Google云端硬盘直接下载链接
  从原始链接中获取文件ID(从共享设置中获取共享链接),并将其附加到新链接的末尾。使用新格式,您共享的任何链接都会自动下载到收件人的计算机上。例如:

     

https://drive.google.com/file/d/FILE_ID/edit?usp=sharing

     

成为:

     

https://drive.google.com/uc?export=download&id=FILE_ID

在您的情况下:

url: 'https://drive.google.com/file/d/1rvb4xvwAZGj4gwrQLH7mjZtPBGzv97WQ',

成为:

url: 'https://drive.google.com/uc?export=download&id=1rvb4xvwAZGj4gwrQLH7mjZtPBGzv97WQ',

proof of concept fiddle

screenshot of resulting map

代码段:

function initMap() {
  var map = new google.maps.Map(document.getElementById('map'), {
    zoom: 12,
    center: {
      lat: 40.45,
      lng: -3.8
    }
  });
  var georssLayer = new google.maps.KmlLayer({
    url: 'https://drive.google.com/uc?export=download&id=1rvb4xvwAZGj4gwrQLH7mjZtPBGzv97WQ',
  });
  google.maps.event.addListener(georssLayer, 'status_changed', function() {
    console.log(georssLayer.getStatus());
  })
  georssLayer.setMap(map);
}
html,
body,
#map {
  height: 100%;
  margin: 0;
  padding: 0;
}
<div id="map"></div>
<!-- Replace the value of the key parameter with your own API key. -->
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCkUOdZ5y7hMm0yrcCQoCvLwzdM6M8s5qk&callback=initMap"></script>