Fix rendering types issue
This commit is contained in:
parent
38407ae763
commit
e1300b9df7
2 changed files with 5 additions and 5 deletions
|
@ -60,12 +60,12 @@ public class BinaryInspector {
|
|||
// test cases show info
|
||||
if(args.length == 1 && "test".equals(args[0])) {
|
||||
in.inspector(new String[]{
|
||||
"-vpoi",
|
||||
// "-vmap", "-vmapobjects",
|
||||
// "-vpoi",
|
||||
"-vmap", "-vmapobjects",
|
||||
// "-vrouting",
|
||||
// "-vaddress", "-vcities", "-vstreets", "-vstreetgroups","-vbuildings",
|
||||
//"-zoom=16",
|
||||
//"-bbox=4,55,7,50",
|
||||
// "-bbox=1.74,51.17,1.75,51.16",
|
||||
"/home/victor/projects/osmand/osm-gen/Map.obf"
|
||||
});
|
||||
} else {
|
||||
|
@ -727,7 +727,7 @@ public class BinaryInspector {
|
|||
for(int i=0; i<obj.getPointsLength(); i++) {
|
||||
float x = (float) MapUtils.get31LongitudeX(obj.getPoint31XTile(i));
|
||||
float y = (float) MapUtils.get31LatitudeY(obj.getPoint31YTile(i));
|
||||
b.append(x).append(" / ").append(y).append(" , ");
|
||||
b.append(y).append(" / ").append(x).append(" , ");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -582,7 +582,7 @@ public class MapRenderingTypes {
|
|||
rt.applyToTagValue = null;
|
||||
} else {
|
||||
rt.applyToTagValue.addAll(mapRulType.applyToTagValue);
|
||||
mapRulType.applyToTagValue.add(rt.tagValuePattern);
|
||||
mapRulType.applyToTagValue.addAll(rt.applyToTagValue);
|
||||
}
|
||||
} else {
|
||||
mapRulType.applyToTagValue = null;
|
||||
|
|
Loading…
Reference in a new issue