How to call a kml file for google earth from c# Windows application ? Hi Deeban,
you can call call the kml file from c# windows application for google earth using the ApplicationGEClass class.
here is the code:
ApplicationGEClass googleEarth = new ApplicationGEClass();
googleEarth.OpenKmlFile(Environment.CurrentDirecto ry + "/KML_Samples.kml", 10);
I hope this will help you...
cheers... |