Update output
This commit is contained in:
parent
c472c05249
commit
61300925ad
2 changed files with 12 additions and 7 deletions
|
@ -66,17 +66,17 @@ public class BinaryInspector {
|
||||||
// test cases show info
|
// test cases show info
|
||||||
if(args.length == 1 && "test".equals(args[0])) {
|
if(args.length == 1 && "test".equals(args[0])) {
|
||||||
in.inspector(new String[]{
|
in.inspector(new String[]{
|
||||||
// "-vpoi",
|
"-vpoi",
|
||||||
// "-vmap","-vmapobjects", // "-vmapcoordinates",
|
// "-vmap","-vmapobjects", // "-vmapcoordinates",
|
||||||
"-vrouting",
|
// "-vrouting",
|
||||||
// "-vaddress", "-vcities",//"-vstreetgroups",
|
// "-vaddress", "-vcities",//"-vstreetgroups",
|
||||||
// "-vstreets", "-vbuildings", "-vintersections",
|
// "-vstreets", "-vbuildings", "-vintersections",
|
||||||
// "-zoom=15",
|
// "-zoom=15",
|
||||||
// "-bbox=1.74,51.17,1.75,51.16",
|
// "-bbox=1.74,51.17,1.75,51.16",
|
||||||
// "-vstats",
|
// "-vstats",
|
||||||
// "/Users/victorshcherb/osmand/maps/Synthetic_test_rendering.obf"
|
"/Users/victorshcherb/osmand/maps/Synthetic_test_rendering.obf"
|
||||||
// "/Users/victorshcherb/osmand/maps/Netherlands_europe_2.road.obf"
|
// "/Users/victorshcherb/osmand/maps/Netherlands_europe_2.road.obf"
|
||||||
"/Users/victorshcherb/osmand/maps/Map.obf"
|
// "/Users/victorshcherb/osmand/maps/Map.obf"
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
in.inspector(args);
|
in.inspector(args);
|
||||||
|
@ -1036,9 +1036,9 @@ public class BinaryInspector {
|
||||||
while(it.hasNext()) {
|
while(it.hasNext()) {
|
||||||
Entry<String, String> e = it.next();
|
Entry<String, String> e = it.next();
|
||||||
if(e.getValue().startsWith(" gz ")) {
|
if(e.getValue().startsWith(" gz ")) {
|
||||||
s += e.getKey() +"=...";
|
s += " " + e.getKey() +"=...";
|
||||||
} else {
|
} else {
|
||||||
s += e.getKey() +"=" +e.getValue();
|
s += " " + e.getKey() +"=" +e.getValue();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -56,6 +56,11 @@ public class MapPoiTypes {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static void setDefault(MapPoiTypes types) {
|
||||||
|
DEFAULT_INSTANCE = types;
|
||||||
|
DEFAULT_INSTANCE.init();
|
||||||
|
}
|
||||||
|
|
||||||
public static MapPoiTypes getDefault() {
|
public static MapPoiTypes getDefault() {
|
||||||
if(DEFAULT_INSTANCE == null){
|
if(DEFAULT_INSTANCE == null){
|
||||||
DEFAULT_INSTANCE = new MapPoiTypes(null);
|
DEFAULT_INSTANCE = new MapPoiTypes(null);
|
||||||
|
|
Loading…
Reference in a new issue