![]() |
Cesium for Unreal 2.16.0
|
A single feature (a location or region) obtained from a geocoder service. More...
#include <CesiumGeocoderServiceBlueprintLibrary.h>
Public Member Functions | |
FCesiumGeocoderServiceFeature ()=default | |
FCesiumGeocoderServiceFeature (const CesiumIonClient::GeocoderFeature &feature) | |
Public Attributes | |
FVector | LongitudeLatitudeHeight |
The position of the feature expressed as longitude in degrees (X), latitude in degrees (Y), and height in meters above the ellipsoid (Z). | |
FBox | GlobeRectangle |
The globe rectangle that bounds the feature. | |
FString | DisplayName |
The user-friendly display name of this feature. | |
A single feature (a location or region) obtained from a geocoder service.
Definition at line 98 of file CesiumGeocoderServiceBlueprintLibrary.h.
|
default |
FCesiumGeocoderServiceFeature::FCesiumGeocoderServiceFeature | ( | const CesiumIonClient::GeocoderFeature & | feature | ) |
FString FCesiumGeocoderServiceFeature::DisplayName |
The user-friendly display name of this feature.
Definition at line 149 of file CesiumGeocoderServiceBlueprintLibrary.h.
FBox FCesiumGeocoderServiceFeature::GlobeRectangle |
The globe rectangle that bounds the feature.
The box's Min.X
is the Westernmost longitude in degrees, Min.Y
is the Southernmost latitude in degrees, Max.X
is the Easternmost longitude in degrees, and Max.Y
is the Northernmost latitude in degrees.
If the geocoder service returned a bounding box for this result, this will return the bounding box. If the geocoder service returned a coordinate for this result, this will return a zero-width rectangle at that coordinate.
Definition at line 140 of file CesiumGeocoderServiceBlueprintLibrary.h.
FVector FCesiumGeocoderServiceFeature::LongitudeLatitudeHeight |
The position of the feature expressed as longitude in degrees (X), latitude in degrees (Y), and height in meters above the ellipsoid (Z).
Do not confuse the ellipsoid height with a geoid height or height above mean sea level, which can be tens of meters higher or lower depending on where in the world the object is located.
The height may be 0.0, indicating that the geocoder did not provide a height for the feature.
If the geocoder service returned a bounding box for this result, this will return the center of the bounding box. If the geocoder service returned a coordinate for this result, this will return the coordinate.
Definition at line 124 of file CesiumGeocoderServiceBlueprintLibrary.h.