Merge pull request #11150 from osmandapp/address_10877

Fix reverse geocoding for building only
This commit is contained in:
vshcherb 2021-03-15 17:15:38 +01:00 committed by GitHub
commit 68c07a3de4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -282,10 +282,12 @@ public class GeocodingUtilities {
} else {
Collections.sort(streetsList, DISTANCE_COMPARATOR);
double streetDistance = 0;
boolean isBuildingFound = knownMinBuildingDistance > 0;
for (GeocodingResult street : streetsList) {
if (streetDistance == 0) {
streetDistance = street.getDistance();
} else if (street.getDistance() > streetDistance + DISTANCE_STREET_FROM_CLOSEST_WITH_SAME_NAME) {
} else if (streetDistance > 0 && street.getDistance() > streetDistance + DISTANCE_STREET_FROM_CLOSEST_WITH_SAME_NAME &&
isBuildingFound) {
continue;
}
street.connectionPoint = road.connectionPoint;
@ -296,6 +298,7 @@ public class GeocodingUtilities {
if (knownMinBuildingDistance == 0) {
GeocodingResult firstBld = it.next();
knownMinBuildingDistance = firstBld.getDistance();
isBuildingFound = true;
res.add(firstBld);
}
while (it.hasNext()) {