TopoJsonOptionsDefaultObjectName Property |
Name of the object where features are put by default.
Namespace:
Aspose.Gis.Formats.TopoJson
Assembly:
Aspose.GIS (in Aspose.GIS.dll) Version: 20.3.0.0 (20.03)
Syntax public string DefaultObjectName { get; set; }
Public Property DefaultObjectName As String
Get
Set
public:
property String^ DefaultObjectName {
String^ get ();
void set (String^ value);
}
member DefaultObjectName : string with get, set
Property Value
Type:
StringRemarks
This is writing option - it does not affect reading.
TopoJSON may contain any number of named objects. Every such object can contain
multiple features. In order to specify in which object to put your feature, use
ObjectNameAttribute property.
If attribute with name
ObjectNameAttribute is
or unset for
some feature, this feature is added to object with the name
DefaultObjectName.
If attribute with name
ObjectNameAttribute is not present in
Attributes
collection, all features are put into object with name
ObjectNameAttribute.
Default value is "unnamed".
See Also