Fix compilation
This commit is contained in:
parent
e87b398463
commit
27e379fc97
1 changed files with 17 additions and 0 deletions
|
@ -36,6 +36,9 @@ public class Amenity extends MapObject {
|
||||||
private String openingHours;
|
private String openingHours;
|
||||||
private Map<String, String> additionalInfo;
|
private Map<String, String> additionalInfo;
|
||||||
private AmenityRoutePoint routePoint; // for search on path
|
private AmenityRoutePoint routePoint; // for search on path
|
||||||
|
// context menu geometry;
|
||||||
|
private TIntArrayList y;
|
||||||
|
private TIntArrayList x;
|
||||||
|
|
||||||
public Amenity() {
|
public Amenity() {
|
||||||
}
|
}
|
||||||
|
@ -290,4 +293,18 @@ public class Amenity extends MapObject {
|
||||||
}
|
}
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public TIntArrayList getY() {
|
||||||
|
if(y == null) {
|
||||||
|
y = new TIntArrayList();
|
||||||
|
}
|
||||||
|
return y;
|
||||||
|
}
|
||||||
|
|
||||||
|
public TIntArrayList getX() {
|
||||||
|
if (x == null) {
|
||||||
|
x = new TIntArrayList();
|
||||||
|
}
|
||||||
|
return x;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue