Click or drag to resize

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.1.418.0 (24.1.418.0)
Syntax
public delegate IServiceProvider CoverageGridPointCreationCallback(
	CoverageGridPointWithResults gridPointWithResults
)

Parameters

gridPointWithResults
Type: AGI.Foundation.CoverageCoverageGridPointWithResults
The grid point to use that supplies the location service provider.

Return Value

Type: IServiceProvider
The 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