CoverageGridPointCreationCallback Delegate |
A delegate which defines a method for creating a service provider for use in access based on a given
coverage grid point position.
Namespace:
AGI.Foundation.Coverage
Assembly:
AGI.Foundation.Spatial (in AGI.Foundation.Spatial.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public delegate IServiceProvider CoverageGridPointCreationCallback(
CoverageGridPointWithResults gridPointWithResults
)
Public Delegate Function CoverageGridPointCreationCallback (
gridPointWithResults As CoverageGridPointWithResults
) As IServiceProvider
public delegate IServiceProvider^ CoverageGridPointCreationCallback(
CoverageGridPointWithResults^ gridPointWithResults
)
type CoverageGridPointCreationCallback =
delegate of
gridPointWithResults : CoverageGridPointWithResults -> IServiceProvider
Parameters
- gridPointWithResults
- Type: AGI.Foundation.CoverageCoverageGridPointWithResults
The grid point to use that supplies the location service provider.
Return Value
Type:
IServiceProviderThe service provider for use in access calculations.
Remarks
This is used to provide custom implementation for orienting grid points and
providing services on the grid for use in access calculations. The user is responsible for ensuring
that the
ILocationPointService (and any other services involving position) use the position
of the given grid point.
See Also