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.
// Created by plusminus on 23:11:31 - 22.09.2008 package org.andnav.osm.util.constants; /*from ww w.j a v a 2s . c o m*/ /** * * @author Nicolas Gramlich * */ public interface OpenStreetMapConstants { // =========================================================== // Final Fields // =========================================================== public static final String DEBUGTAG = "OPENSTREETMAP"; public static final int NOT_SET = Integer.MIN_VALUE; public static final String PREFS_NAME = "org.andnav.osm.prefs"; public static final String PREFS_RENDERER = "renderer"; public static final String PREFS_SCROLL_X = "scrollX"; public static final String PREFS_SCROLL_Y = "scrollY"; public static final String PREFS_ZOOM_LEVEL = "zoomLevel"; public static final String PREFS_SHOW_LOCATION = "showLocation"; public static final String PREFS_FOLLOW_LOCATION = "followLocation"; // =========================================================== // Methods // =========================================================== }