preferredSearchLocation property
Preferred search location.
Point specifying the preferred location where candidates will be searched.
Implementation
ArcGISPoint? get preferredSearchLocation {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_SuggestParameters_getPreferredSearchLocation(
_handle, errorHandler);
});
return ArcGISPoint._fromHandle(objectHandle);
}
Implementation
set preferredSearchLocation(ArcGISPoint? value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_SuggestParameters_setPreferredSearchLocation(
_handle, value?._handle ?? ffi.nullptr, errorHandler);
});
}