OverpassTileDecoder: fix unexpected roof:direction (#674)

This commit is contained in:
Gustl22 2019-02-23 01:50:24 +01:00 committed by Emux
parent f348296a8c
commit b9c7d4cbb1
No known key found for this signature in database
GPG Key ID: 64ED9980896038C3

View File

@ -212,6 +212,9 @@ public class OverpassTileDecoder implements ITileDecoder {
case "nnw":
tag.value = "337";
break;
default:
tag.value = "0";
break;
}
}
}