All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dstadler.ctw.utils.BaseTile Maven / Gradle / Ivy

There is a newer version: 1.0.13
Show newest version
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