fix compilation problem
git-svn-id: https://osmand.googlecode.com/svn/trunk@541 e29c36b1-1cfa-d876-8d93-3434fc2bb7b8
This commit is contained in:
parent
9b5426877b
commit
c62d4984fc
1 changed files with 8 additions and 1 deletions
|
@ -6,6 +6,7 @@ public class MultyPolygon extends MapRenderObject {
|
||||||
// just not fill intersecting areas
|
// just not fill intersecting areas
|
||||||
// first 32 bits - x, second 32 bits - y
|
// first 32 bits - x, second 32 bits - y
|
||||||
private long[][] lines = null;
|
private long[][] lines = null;
|
||||||
|
private String[] names = null;
|
||||||
public MultyPolygon(){
|
public MultyPolygon(){
|
||||||
super(-1);
|
super(-1);
|
||||||
}
|
}
|
||||||
|
@ -25,7 +26,13 @@ public class MultyPolygon extends MapRenderObject {
|
||||||
throw new UnsupportedOperationException();
|
throw new UnsupportedOperationException();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setNames(String[] names) {
|
||||||
|
this.names = names;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName(int bound){
|
||||||
|
return names[bound];
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getPoint31YTile(int ind) {
|
public int getPoint31YTile(int ind) {
|
||||||
|
|
Loading…
Reference in a new issue