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
|
|
|
|
|
|
|
// common parts : work with cache on file system & in memory
|
|
|
|
public int EXTRACT_COMMON_PARTS_FROM_MAPPANEL_AND_OSMMAPVIEW = 5;
|
|
|
|
|
|
|
|
/**
|
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
|
|
|
|
|
|
|
|
//// 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
|
|
|
|
// 4. Fix Java Spring to prepare your data!!! (add progress, import/export data)
|
|
|
|
// 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-13 20:02:30 +02:00
|
|
|
// 9. Log to see when exception occured(android)
|
|
|
|
// 10. Specify auto-rotating map (compass).
|
|
|
|
// 11. Print out additional info speed, altitude, number of satellites
|
2010-05-06 11:08:58 +02:00
|
|
|
// -------------------
|
|
|
|
|
2010-05-09 00:42:56 +02:00
|
|
|
|
|
|
|
/// SWING version :
|
|
|
|
// TODO :
|
2010-05-14 23:05:18 +02:00
|
|
|
// 1. save preferences ? where? (use internet, default dir save and other...)
|
2010-05-09 00:42:56 +02:00
|
|
|
// 2. specify area to download tiles ()
|
2010-05-13 20:02:30 +02:00
|
|
|
// 3. download tiles without using dir tiles
|
|
|
|
// 4. Config file log & see log from file
|
2010-05-14 23:05:18 +02:00
|
|
|
// 5. specify area to load map (filter for osm loading)
|
|
|
|
// 6. Predefine what should be extracted from osm (building, poi or roads)
|
2010-05-02 01:35:00 +02:00
|
|
|
|
|
|
|
}
|