2010-05-02 01:35:00 +02:00
|
|
|
package com.osmand;
|
|
|
|
|
2010-05-05 11:31:54 +02:00
|
|
|
|
2010-05-02 01:35:00 +02:00
|
|
|
/**
|
|
|
|
* 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 {
|
|
|
|
|
2010-05-02 14:35:36 +02:00
|
|
|
|
|
|
|
// OsmandMapTileView.java have problem with class loading (LogFactory, MapTileDownloader) -
|
2010-05-06 00:29:58 +02:00
|
|
|
// it is not editable in editor ?
|
2010-05-02 14:35:36 +02:00
|
|
|
public int MAKE_MAP_PANEL_EDITABLE_IN_EDITOR = 4;
|
2010-05-05 11:31:54 +02:00
|
|
|
|
|
|
|
/**
|
2010-05-06 00:29:58 +02:00
|
|
|
* Write activity to show something about authors / donation ....
|
2010-05-05 11:31:54 +02:00
|
|
|
*/
|
2010-05-06 00:29:58 +02:00
|
|
|
public int DESCRIBE_ABOUT_AUTHORS = 8;
|
2010-05-05 11:31:54 +02:00
|
|
|
|
2010-05-06 11:08:58 +02:00
|
|
|
// TODO see all calculations x, y for layers & for MapView
|
2010-05-16 23:49:11 +02:00
|
|
|
|
|
|
|
// 0. Minimize memory used for index & improve time for read index
|
2010-05-06 11:08:58 +02:00
|
|
|
//// TODO for releasing version
|
|
|
|
// 1. POI SEARCH NEAR TO YOU
|
|
|
|
// 2. FIX BACK TO your location & gps & point of view (may be compass)
|
2010-05-13 20:02:30 +02:00
|
|
|
// 3. Revise UI icons/layout
|
|
|
|
// 5. Enable city/streets/buildings index
|
2010-05-09 00:42:56 +02:00
|
|
|
// 7. Search for city/streets/buildings!
|
|
|
|
// 8. Enable change POI directly on map
|
2010-05-19 13:24:08 +02:00
|
|
|
// 9. Log to see when exception occurred (android)
|
2010-05-13 20:02:30 +02:00
|
|
|
// 10. Specify auto-rotating map (compass).
|
|
|
|
// 11. Print out additional info speed, altitude, number of satellites
|
2010-05-17 14:03:16 +02:00
|
|
|
// 12. Show point where are you going (the arrow not the point)
|
2010-05-19 13:24:08 +02:00
|
|
|
// 13. Save point as favorite
|
2010-05-17 14:03:16 +02:00
|
|
|
// 14. Show zoom level directly on map
|
2010-05-19 13:24:08 +02:00
|
|
|
// 15. Investigate interruption of progress (is it available & how to support it)
|
2010-05-06 11:08:58 +02:00
|
|
|
// -------------------
|
|
|
|
|
2010-05-18 09:10:37 +02:00
|
|
|
// BUGS Androd :
|
|
|
|
// 1. When firstly run osmand navigation (from notification bar) show map & go to menu shows desktop.
|
|
|
|
// No chance to close application
|
|
|
|
|
2010-05-09 00:42:56 +02:00
|
|
|
|
|
|
|
/// SWING version :
|
|
|
|
// TODO :
|
2010-05-20 09:59:35 +02:00
|
|
|
// 1. Predefine before file loading what should be extracted from osm (building, poi or roads) !
|
|
|
|
// 2. Fix TODO in files (accept amenity - way)
|
|
|
|
|
|
|
|
// 3. download tiles without using dir tiles
|
|
|
|
// 4. Config file log & see log from file
|
|
|
|
// 5. Reinvent index mechanism (save in zip file with tile indexes, save city/town addresses separately, read partially !)
|
|
|
|
// 6. Invent different file extensions for poi.index, address.index,...
|
2010-05-02 01:35:00 +02:00
|
|
|
|
|
|
|
}
|