我用sharpkml和GEplugin打开了一个kml文件 但我想知道如何用它打开一个kmz文件。
任何人都知道怎么做?
答案 0 :(得分:0)
我不确定如何使用sharpkml,但GE插件API包含函数fetchKml来加载kml和kmz文件。
以下是代码(来自code samples playground:我更改了链接以使用this示例页面中的示例kmz文件。)
var url ='http://kml-samples.googlecode.com/svn/trunk/kml/Region/GroundOverlay/usa-ca-sf.kmz';
google.earth.fetchKml(ge,url,finished);
使用winforms geplugin库我使用包装函数FetchKml: geWebBrowser1.FetchKml(“http://”+ sServerIP +“//sample.kmz”);