You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The definition for generic coordinate value accessor on BasePosition:
/// A coordinate value by the coordinate axis index [i]. /// /// Returns zero when a coordinate axis is not available. /// /// For projected or cartesian coordinates, the coordinate ordering is: /// (x, y), (x, y, m), (x, y, z) or (x, y, z, m). /// /// For geographic coordinates, the coordinate ordering is: /// (lon, lat), (lon, lat, m), (lon, lat, elev) or (lon, lat, elev, m).numoperator [](int i);
/// Coordinate values of this position as an iterable of 2, 3 or 4 items. /// /// For projected or cartesian coordinates, the coordinate ordering is: /// (x, y), (x, y, m), (x, y, z) or (x, y, z, m). /// /// For geographic coordinates, the coordinate ordering is: /// (lon, lat), (lon, lat, m), (lon, lat, elev) or (lon, lat, elev, m).Iterable<num> get values;
Implemented by Position and GeoPosition.
The text was updated successfully, but these errors were encountered:
The definition for generic coordinate value accessor on
BasePosition
:Implemented by
Position
andGeoPosition
.The text was updated successfully, but these errors were encountered: