7

将侦听器附加到 KML 层:

var layer = new google.maps.KmlLayer('http://sites.google.com/site/kmlprototypes/kmls/temp.kml?dc_=' + Math.random(),
{suppressInfoWindows:true,preserveViewport:true});

layer.setMap(map);

google.maps.event.addListener(layer, 'click', function (obj) {
    alert(obj.featureData.id);
});

KML 文件有效(通过验证 api 检查),您可以在此处找到它。XML 中的每个地标都有 id 属性,例如:

<Placemark id="46">
  <Style>
    <IconStyle>
      <Icon>
        <href>
          <![CDATA[http://chart.apis.google.com/chart?chf=bg,s,EAF7FE02&chxt=y&chbh=a,4,4&chs=48x48&cht=bvg&chco=FF0000,0000FF&chds=20,9048.00,0,9048.00&chd=t:8149.00|9048.00]]>
        </href>
      </Icon>
    </IconStyle>
  </Style>
  <Point>
    <coordinates>30.49566650390625,50.721378326416016</coordinates>
  </Point>
</Placemark>

当点击谷歌地图对象中的地标时,返回正确的 id,但有时大约 50% 的时间obj.featuredData.idnullZERO_RESULTS状态在status字段中)。我尝试了不同的数据集(从 100 点到 1000 点),但没有帮助。我还尝试了 lat、lng 的不同精度。

4

1 回答 1

0

您可能已经达到该页面上列出的限制之一:https ://developers.google.com/kml/documentation/mapsSupport?hl=en

每个文件最多 1000 个功能可能是困扰您的一个。

于 2015-08-24T17:26:50.397 回答