Table of Contents

Class PlaceObjectEntity

Namespace
ActivityPub.Types.AS.Extended.Object
Assembly
ActivityPub.Types.dll

Represents a logical or physical location.

public sealed class PlaceObjectEntity : ASEntity<PlaceObject, PlaceObjectEntity>
Inheritance
PlaceObjectEntity
Inherited Members

Properties

Accuracy

Indicates the accuracy of position coordinates on a Place objects. Expressed in properties of percentage. e.g. "94.0" means "94.0% accurate".

[JsonPropertyName("accuracy")]
public float? Accuracy { get; set; }

Property Value

float?
See Also

Altitude

Indicates the altitude of a place. The measurement units is indicated using the units property. If units is not specified, the default is assumed to be "m" indicating meters.

[JsonPropertyName("altitude")]
public float? Altitude { get; set; }

Property Value

float?
See Also

Latitude

The latitude of a place.

[JsonPropertyName("latitude")]
public float? Latitude { get; set; }

Property Value

float?
See Also

Longitude

The longitude of a place.

[JsonPropertyName("longitude")]
public float? Longitude { get; set; }

Property Value

float?
See Also

Radius

The radius from the given latitude and longitude for a Place. The units is expressed by the units property. If units is not specified, the default is assumed to be "m" indicating "meters".

[JsonPropertyName("radius")]
public float? Radius { get; set; }

Property Value

float?
See Also

Units

Specifies the measurement units for the radius and altitude properties on a Place object. If not specified, the default is assumed to be "m" for "meters".

[JsonPropertyName("units")]
public string? Units { get; set; }

Property Value

string
See Also