Google地图会显示KML数据

时间:2012-04-04 00:07:57

标签: javascript google-maps kml google-visualization google-maps-markers

我有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')
 });

非常感谢任何帮助!

谢谢!