displayLocation property
Location of the candidate suitable for display on a map.
For example, this may provide a more precise rooftop location of a house, whereas GeocodeResult.routeLocation represents the nearest street location.
Implementation
ArcGISPoint? get displayLocation {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GeocodeResult_getDisplayLocation(
_handle,
errorHandler,
);
});
return ArcGISPoint._fromHandle(
objectHandle,
);
}