maxLocatingDistance property
Maximum locating distance is the furthest distance in meters that Network Analyst searches when locating or relocating a point onto the network.
The search looks for suitable edges or junctions and snaps the point to the nearest one. If a suitable location isn't found within the maximum locating distance, the object is marked as unlocated.
Implementation
double get maxLocatingDistance {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ClosestFacilityTaskInfo_getMaxLocatingDistance(
_handle, errorHandler);
});
}