Back to project page aBusTripMK.
The source code is released under:
GNU General Public License
If you think the Android project aBusTripMK listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.andnav.osm.services.util.constants; // w w w . ja v a 2 s . c o m import android.os.Environment; /** * * @author Neil Boyd * */ public interface OpenStreetMapServiceConstants { // =========================================================== // Final Fields // =========================================================== // FIXME set DEBUGMODE to false public static final boolean DEBUGMODE = true; public static final String TILE_PATH_BASE = Environment.getExternalStorageDirectory() + "/andnav2/tiles/"; public static final String TILE_PATH_EXTENSION = ".andnav"; public static final int NUMBER_OF_TILE_DOWNLOAD_THREADS = 4; public static final int NUMBER_OF_TILE_FILESYSTEM_THREADS = 2; public static final int TILE_DOWNLOAD_MAXIMUM_QUEUE_SIZE = 50; public static final int TILE_FILESYSTEM_MAXIMUM_QUEUE_SIZE = 50; // =========================================================== // Methods // =========================================================== }