0

我有 KML 字符串,我想在 Google 地图上显示它。我有字符串而不是文件。这是因为我在 Fusion Tables 中有我的 KML 数据,我需要做类似的事情:https ://developers.google.com/fusiontables/docs/samples/custom_markers

我只有 KML 数据,没有坐标,所以我不确定如何显示它。

我试过这个,但没有奏效:

var marker = new google.maps.Marker({
      map: map,
      position: '<polygon>....</polygon>',
      icon: new google.maps.MarkerImage('https://developers.google.com/fusiontables/docs/samples/images/fusion_tables-32.png')
 });

任何帮助深表感谢!

谢谢!

4

2 回答 2

0

我遇到了这一行:https ://developers.google.com/fusiontables/docs/samples/change_infowindow_content

它回答了我的问题!

于 2012-04-04T16:02:41.113 回答