org.osmdroid.tileprovider.tilesource.IStyledTileSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of osmdroid-android Show documentation
Show all versions of osmdroid-android Show documentation
An Android library to display OpenStreetMap views.
package org.osmdroid.tileprovider.tilesource;
/**
* Tile sources that have a settable "style" attibute can implement this. After setting this on a
* tile provider, you may need to call clearTileCache() or call setTileSource() again on the tile
* provider to clear the current tiles on the screen that are still in the old style.
*/
public interface IStyledTileSource {
public void setStyle(T style);
public void setStyle(String style);
public T getStyle();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy