This commit is contained in:
crimean 2019-03-30 19:46:40 +03:00
parent 4cea208b95
commit 2789ab5244
2 changed files with 4 additions and 2 deletions

View file

@ -3932,4 +3932,6 @@
<string name="poi_rtsa_scale_3b"></string>
<string name="poi_rtsa_scale_3b_asterisk">3Б*</string>
<string name="poi_change_delete">Deleted object</string>
</resources>

View file

@ -586,7 +586,7 @@ public abstract class OsmandMapLayer {
Amenity res = null;
for (Amenity amenity : amenities) {
Long amenityId = amenity.getId() >> 1;
if (amenityId == id) {
if (amenityId == id && !amenity.isClosed()) {
res = amenity;
break;
}
@ -594,7 +594,7 @@ public abstract class OsmandMapLayer {
if (res == null && names != null && names.size() > 0) {
for (Amenity amenity : amenities) {
for (String name : names) {
if (name.equals(amenity.getName())) {
if (name.equals(amenity.getName()) && !amenity.isClosed()) {
res = amenity;
break;
}