GlobeView.GroundAt Methods
Returns the coordinates of the ground position that is presented at the specified drawable position.
Overload List
Name | Description | |
---|---|---|
Public method | GroundAt(Point point) | Returns the coordinates of the ground position that is presented at the specified drawable position. |
Public method | GroundAt(System.Int32 x, System.Int32 y) | Returns the coordinates of the ground position that is presented at the specified drawable position. |
GroundAt(Point point)
Returns the coordinates of the ground position that is presented at the specified drawable position.Syntax
public Point GroundAt (
Point point
)
Parameters
The drawable coordinate.
Return Value
The coordinate of the ground point, or [-1.0e99, -1.0e99, -1.0e99] if no ground is found.
Remarks
Returns the coordinate ([x, y, z]) at ground level that is presented at the specified drawable coordinate. If there is no ground at specified point the coordinate [-1.0e99, -1.0e99, -1.0e99] is returned.
Example
// Check if the given mouse position points on the ground or in the sky
public static bool IsMouseOnGround(GlobeView globeView, Point mousePixelPosition)
{
// Get the ground position that is presented at the specified mouse position.
Point groundPoint = globeView.GroundAt(mousePixelPosition);
// Check if the ground point is valid.
// If no ground is found the point [-1.0e99, -1.0e99, -1.0e99] is returned.
return groundPoint != new Point(-1.0e99, -1.0e99, -1.0e99);
}
GroundAt(System.Int32 x, System.Int32 y)
Returns the coordinates of the ground position that is presented at the specified drawable position.Syntax
public Point GroundAt (
System.Int32 x,
System.Int32 y
)
Parameters
The drawable X coordinate.
The drawable Y coordinate.
Return Value
The coordinate of the ground point, or [-1.0e99, -1.0e99, -1.0e99] if no ground is found.
Remarks
Returns the coordinate ([x, y, z]) at ground level that is presented at the specified drawable coordinate. If there is no ground at specified point the coordinate [-1.0e99, -1.0e99, -1.0e99] is returned.
Platforms
Windows, Linux, Android