RasterTerrainCacheGetPosts Method  | 
 
            Gets the collection of posts containing a specified longitude and latitude.
            If a region satisfying the request is in the cache, it will be returned.
            Otherwise, a minimal region will be loaded to satisfy the request,
            and a load of a larger region will be queued to the
            
TerrainCacheGroup thread.
            
 
    Namespace: 
   AGI.Foundation.Terrain
    Assembly:
   AGI.Foundation.TerrainReaders (in AGI.Foundation.TerrainReaders.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic TerrainPosts GetPosts(
	double longitude,
	double latitude
)
Public Function GetPosts ( 
	longitude As Double,
	latitude As Double
) As TerrainPosts
public:
TerrainPosts^ GetPosts(
	double longitude, 
	double latitude
)
member GetPosts : 
        longitude : float * 
        latitude : float -> TerrainPosts 
Parameters
- longitude
 - Type: SystemDouble
The required longitude. - latitude
 - Type: SystemDouble
The required latitude. 
Return Value
Type: 
TerrainPostsA collection of posts from which the height at the specified longitude and latitude can be interpolated.
See Also