Skip to content

GeoObjectModel

Namespace: ThinkGeo.Core

This class represent the model of a top level object.

public class GeoObjectModel

Inheritance objectGeoObjectModel

Properties

Name

Gets or sets the Name of the model.

public string Name { get; set; }

Property Value

string

RootNode

Gets or sets the RootNode of the model.

public GeoObjectNode RootNode { get; set; }

Property Value

GeoObjectNode

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.