org.dstadler.ctw.utils.BaseTile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cover-the-world Show documentation
Show all versions of cover-the-world Show documentation
Read GPX tracks and produce a world-map with covered tiles.
package org.dstadler.ctw.utils;
import uk.me.jstott.jcoord.LatLng;
/**
* Small interface to allow to handle different
* types of tiles via common utility code.
*
* @param
*/
public interface BaseTile {
LatLonRectangle getRectangle();
BaseTile up();
BaseTile down();
BaseTile right();
BaseTile left();
LatLng toLatLng();
String string();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy