Questions tagged [sharpkml]

SharpKML is an implementation of the Open Geospatial Consortium (OGC) KML 2.2 standard developed in C#, able to read/write both KML files and KMZ files.

SharpKML is an implementation of the Open Geospatial Consortium (OGC) KML 2.2 standard developed in C#, able to read/write both KML files and KMZ files.

The library has been based on Google's C++ implementation of the standard (libkml), however, instead of using the SWIG bindings the code has been written from scratch to give a more C# feel, by using properties, extension methods and the built in Xml handling of the .NET framework.

25 questions
0
votes
0 answers

How to foreach simplefield and simpledata using SharpKML in ASP.NET web API?

I have problem with foreach the and tags, how can I foreach them? I've tried loop it but is did not working, I using sharpKML because the code before using this library for generate the kml file I have code for looping the…
Gio Isa
  • 85
  • 1
  • 3
  • 10
0
votes
1 answer

Using SharpKml to create a KML file

I'm sure it's something stupid I'm doing but I can't figure it out. I'm trying to write a KML from scratch. It will be inside a KMZ with a bunch of georeferenced pictures that I won't to show up as photo overlays. I can't get it to write a KML…
cndnflyr
  • 163
  • 2
  • 14
0
votes
0 answers

sharpkml invalid portable project type

Between the Google Earth API being deprecated in less than a month and the power of KML/Z files underpinning Google Earth and Bing Maps, I am keenly interested in SharpKML. I hope to use it to geographically 20+ Kodachrome-digitized-scanned…
0
votes
1 answer

Google Earth and Google Maps KML Mismatch

I am working on KML. I have generated the following KML which works fine for the Google Earth but not working fine for Google Maps. The problem is that all icons are not getting displayed. All icons that are inputted in URL are of …
Manoj Sethi
  • 1,898
  • 8
  • 26
  • 56
0
votes
3 answers

Distinct List Elements

I have a list collection of following type CoordinateCollection pointCoordinates = new CoordinateCollection(); it adds up list of type vector. I want to remove duplicate entries from the list I am trying like this pointCoordinates =…
Manoj Sethi
  • 1,898
  • 8
  • 26
  • 56
0
votes
2 answers

Find Intersection Point Between 2 LineStrings

I created a formula to form a grid on the google earth. I want to get the intersection point between the lat/long. Please tell me how we can get the intersection.I am using SharpKML lib for generating KML for (int x = 90; x >= 0; x = x - 15) …
Manoj Sethi
  • 1,898
  • 8
  • 26
  • 56
0
votes
1 answer

How can I open a kmz file with Google's GEplugin?

I've opened a kml file with sharpkml and GEplugin but I was wondering how to open a kmz file with it. Anyone knows how to do it?
0
votes
1 answer

Guidance on adding attributes to KML

I can plot a path in KML no problems. Now I need to annotate the vertices with speed and heading. I could handle this as a progression of placemarks, but before I proceed I thought it best to see what others do in this scenario. As it happens I'm…
Peter Wone
  • 17,965
  • 12
  • 82
  • 134
-1
votes
1 answer

Building with il2cpp on Unity doesn't work with the library SharpKml

My app work fine when i build with mono for Android. But when i build with il2cpp, my app work fine too but when i want create a KML file i have a exception: "object reference not set to an instance or a object". Certainly because root must be…
Cyrille Mouret
  • 75
  • 1
  • 1
  • 5
-1
votes
1 answer

WGS-84 Co-ordinates

I have following set of Co-ordinates 0.00852919145063922,0.000000,0.000000,-0.00852919145063922,-117.210491069447,34.8362619850852 This is the format of WGS-84. Please let me know what does the first point denote, second point denote upto 5th…
Manoj Sethi
  • 1,898
  • 8
  • 26
  • 56
1
2