Fix compilation
This commit is contained in:
parent
954c985712
commit
bc7633ce1d
1 changed files with 2 additions and 2 deletions
|
@ -213,14 +213,14 @@ public class RotatedTileBox {
|
||||||
}
|
}
|
||||||
|
|
||||||
public float getPixXFrom31(int x31, int y31) {
|
public float getPixXFrom31(int x31, int y31) {
|
||||||
double zm = getPowZoom(31 - zoom);
|
double zm = MapUtils.getPowZoom(31 - zoom);
|
||||||
double xTile = ((double) x31) / zm;
|
double xTile = ((double) x31) / zm;
|
||||||
double yTile = ((double) y31) / zm;
|
double yTile = ((double) y31) / zm;
|
||||||
return getPixXFromTile(xTile, yTile);
|
return getPixXFromTile(xTile, yTile);
|
||||||
}
|
}
|
||||||
|
|
||||||
public float getPixYFrom31(int x31, int y31) {
|
public float getPixYFrom31(int x31, int y31) {
|
||||||
double zm = getPowZoom(31 - zoom);
|
double zm = MapUtils.getPowZoom(31 - zoom);
|
||||||
double xTile = ((double) x31) / zm;
|
double xTile = ((double) x31) / zm;
|
||||||
double yTile = ((double) y31) / zm;
|
double yTile = ((double) y31) / zm;
|
||||||
return getPixYFromTile(xTile, yTile);
|
return getPixYFromTile(xTile, yTile);
|
||||||
|
|
Loading…
Reference in a new issue