GeoObjectModel¶
Namespace: ThinkGeo.Core
This class represent the model of a top level object.
public class GeoObjectModel
Inheritance Object → GeoObjectModel
Properties¶
Name¶
Gets or sets the Name of the model.
public string Name { get; set; }
Property Value¶
RootNode¶
Gets or sets the RootNode of the model.
public GeoObjectNode RootNode { get; set; }
Property Value¶
Constructors¶
GeoObjectModel()¶
Creates an instance of GeoObjectModel.
public GeoObjectModel()
GeoObjectModel(String, GeoObjectNode)¶
Creates an instance of GeoObjectModel with a given name and a root node.
public GeoObjectModel(string name, GeoObjectNode rootNode)
Parameters¶
name
String
The name.
rootNode
GeoObjectNode
The root node.