Update MapRenderingTypes.java
This commit is contained in:
parent
2b002357c1
commit
4305d74c20
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ public class MapRenderingTypes {
|
||||||
for (String tag : tagKeySet) {
|
for (String tag : tagKeySet) {
|
||||||
String val = e.getTag(tag);
|
String val = e.getTag(tag);
|
||||||
MapRulType rType = getAmenityRuleType(tag, val);
|
MapRulType rType = getAmenityRuleType(tag, val);
|
||||||
if (rType != null && val != null) {
|
if (rType != null && val.length() > 0) {
|
||||||
if(rType == nameEnRuleType && Algorithms.objectEquals(val, e.getTag(OSMTagKey.NAME))) {
|
if(rType == nameEnRuleType && Algorithms.objectEquals(val, e.getTag(OSMTagKey.NAME))) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue