我正在开发一款带谷歌地球插件的应用。我有一个KmlObject参考,我从获取网址获得。如何提取表示对象的kml字符串?我想我曾经看过它是可能的,但是我很长时间都在搜索它,并且无法再找到它。 谢谢你的帮助!
答案 0 :(得分:1)
getKml方法适用于从摘要KmlFeature继承的所有对象。
调用此方法将为您提供描述该功能的KML的字符串表示形式。即
var p = ge.createPlacemark(''); //create a placemark
p.setName('foo'); // set the feature name
console.log(p.getKml()); //get the feature kml