Deps
This commit is contained in:
parent
c8687b1bae
commit
9c843d1030
4 changed files with 47 additions and 4 deletions
|
@ -25,6 +25,8 @@ public interface IProgress {
|
|||
|
||||
public boolean isInterrupted();
|
||||
|
||||
public void setGeneralProgress(String genProgress);
|
||||
|
||||
public IProgress EMPTY_PROGRESS = new IProgress() {
|
||||
|
||||
@Override
|
||||
|
@ -47,6 +49,11 @@ public interface IProgress {
|
|||
|
||||
@Override
|
||||
public void finishTask() {}
|
||||
|
||||
@Override
|
||||
public void setGeneralProgress(String genProgress) {}
|
||||
};
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -87,6 +87,10 @@ public class BinaryMapAddressReaderAdapter {
|
|||
public static class CitiesBlock extends BinaryIndexPart {
|
||||
int type;
|
||||
|
||||
public int getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public String getPartName() {
|
||||
return "City";
|
||||
}
|
||||
|
|
|
@ -1625,6 +1625,9 @@ public class BinaryMapIndexReader {
|
|||
int numberOfAcceptedSubtrees = 0;
|
||||
boolean interrupted = false;
|
||||
|
||||
public MapObjectStat getStat() {
|
||||
return stat;
|
||||
}
|
||||
|
||||
protected SearchRequest() {
|
||||
}
|
||||
|
|
|
@ -43,10 +43,10 @@ public class BinaryMapPoiReaderAdapter {
|
|||
private static final int BUCKET_SEARCH_BY_NAME = 5;
|
||||
|
||||
public static class PoiSubType {
|
||||
boolean text;
|
||||
String name;
|
||||
public boolean text;
|
||||
public String name;
|
||||
//int estiatedSize;
|
||||
List<String> possibleValues = null;
|
||||
public List<String> possibleValues = null;
|
||||
}
|
||||
|
||||
public static class PoiRegion extends BinaryIndexPart {
|
||||
|
@ -60,10 +60,39 @@ public class BinaryMapPoiReaderAdapter {
|
|||
int top31;
|
||||
int bottom31;
|
||||
|
||||
public int getLeft31() {
|
||||
return left31;
|
||||
}
|
||||
|
||||
public int getRight31() {
|
||||
return right31;
|
||||
}
|
||||
|
||||
public int getTop31() {
|
||||
return top31;
|
||||
}
|
||||
|
||||
public int getBottom31() {
|
||||
return bottom31;
|
||||
}
|
||||
|
||||
public String getPartName() {
|
||||
return "POI";
|
||||
}
|
||||
|
||||
|
||||
public List<String> getCategories() {
|
||||
return categories;
|
||||
}
|
||||
|
||||
public List<List<String>> getSubcategories() {
|
||||
return subcategories;
|
||||
}
|
||||
|
||||
public List<PoiSubType> getSubTypes() {
|
||||
return subTypes;
|
||||
}
|
||||
|
||||
public int getFieldNumber() {
|
||||
return OsmandOdb.OsmAndStructure.POIINDEX_FIELD_NUMBER;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue