20d7b06a39
git-svn-id: https://osmand.googlecode.com/svn/trunk@126 e29c36b1-1cfa-d876-8d93-3434fc2bb7b8
39 lines
1.5 KiB
Java
39 lines
1.5 KiB
Java
package com.osmand;
|
|
/**
|
|
* This class is designed to put all to do's and link them with code.
|
|
* The whole methods could be paste or just constants.
|
|
* Do not worry to put ugly code here (just a little piece)
|
|
*/
|
|
public class ToDoConstants {
|
|
|
|
/**
|
|
* Write activity to show something about authors / donation ....
|
|
*/
|
|
public int DESCRIBE_ABOUT_AUTHORS = 8;
|
|
|
|
// TODO ANDROID NOT in release 0.1
|
|
// 8. Enable change POI directly on map (requires OSM login)
|
|
// 16. Support open street bugs api.
|
|
// 20. Implement save track/route to gpx (?)
|
|
// 26. Show the whole street on map (when it is chosen in search activity). Possibly extend that story to show layer with streets.
|
|
// 30. Performance issue with map drawing :
|
|
// introduce one place where refreshMap will be called using postMessage mechanism (delay more than > 50 ? ms).
|
|
// Introducing cache of file names that are on disk (creating new File() consumes a lot of memory)
|
|
// 31. Translation.
|
|
|
|
|
|
// FIXME Bugs Android :
|
|
// 10. Notification is gone after clear all notifications (TODO test)
|
|
|
|
// TODO swing NOT in release 0.1
|
|
// 1. Download tiles without using dir tiles
|
|
|
|
|
|
// DONE ANDROID :
|
|
// 13. Save point as favorite & introduce favorite points dialog
|
|
// 29. Show opened/closed amenities (in search poi).
|
|
// 3. Revise osmand UI. Preparing new icons (revise UI 18, 2, ). Main application icon, back to location icon.
|
|
// 14. Show zoom level on map
|
|
|
|
// DONE SWING
|
|
}
|