We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Geo can read and write GeoJSON. Objects that implement IGeoJsonObject can be read and written to GeoJSON.
There are two types specific to GeoJSON:
var reader = new GeoJsonReader(); IGeoJsonObject point = reader.Read("{ \"type\": \"Point\", \"coordinates\": [100.0, 0.0] }"); // reading a string
var writer = new GeoJsonWriter(); var pointJson = writer.Write(new Point(68.389, 73.89));