2010-05-02 01:35:00 +02:00
|
|
|
package com.osmand;
|
2010-06-07 20:07:04 +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-06-07 20:07:04 +02:00
|
|
|
// FIXES for 0.1 versions :
|
|
|
|
// 1. Map tile downloader :
|
|
|
|
// while(!threadPoolExecutor.getQueue().isEmpty()){
|
|
|
|
// try {
|
|
|
|
// threadPoolExecutor.getQueue().take();
|
|
|
|
// } catch (InterruptedException e) {
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
2010-05-02 01:35:00 +02:00
|
|
|
|
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-06-01 09:25:29 +02:00
|
|
|
|
2010-06-05 12:42:41 +02:00
|
|
|
// TODO ANDROID
|
2010-05-27 23:06:46 +02:00
|
|
|
// 8. Enable change POI directly on map (requires OSM login)
|
2010-06-03 09:51:18 +02:00
|
|
|
// 31. Translation.
|
2010-06-04 10:13:33 +02:00
|
|
|
// 32. Introduce POI predefined filters (car filter(other-fuel, transportation-car_wash, show-car) and others)
|
2010-06-10 21:36:21 +02:00
|
|
|
// ( 1) predefined filters, 2) choose subtype's, 3) filter by name, 4) opening hours (filter))
|
|
|
|
// 33. Build transport locations. Create transport index (transport-stops) (investigate)
|
|
|
|
// 34. Suppport navigation for calculated route (example of get route from internet is in swing app).
|
2010-06-07 20:07:04 +02:00
|
|
|
// 36. Postcode search
|
2010-06-09 10:54:24 +02:00
|
|
|
// 37. Get rid of exit button (!). Think about when notification should go & how clear resources if it is necessary
|
2010-06-09 14:27:05 +02:00
|
|
|
// 38. Add button in search "navigate to".
|
2010-06-10 21:36:21 +02:00
|
|
|
// 39. Support old-versionned resources (1) odb indexes, 2) favourites table, 3) atomic settings (?))
|
2010-06-09 14:27:05 +02:00
|
|
|
// 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.
|
2010-06-10 21:36:21 +02:00
|
|
|
// 40. Support simple vector road rendering (require new index file)
|
|
|
|
// 41. POI layer over map (shows poi by selected filter)
|
|
|
|
// 42. Revise UI (icons/layouts). Support different devices. Add inactive/focus(!) icon versions.
|
2010-05-31 20:48:18 +02:00
|
|
|
|
2010-06-07 20:07:04 +02:00
|
|
|
// BUGS Android
|
|
|
|
// 2. Include to amenity index : historic, sport, ....
|
2010-06-09 14:27:05 +02:00
|
|
|
// 5. Improvement : Implement caching files existing on FS, implement specific method in RM
|
|
|
|
// Introducing cache of file names that are on disk (creating new File() consumes a lot of memory)
|
2010-06-09 14:06:59 +02:00
|
|
|
|
2010-06-07 20:07:04 +02:00
|
|
|
|
|
|
|
// TODO swing
|
|
|
|
// 3. Implement clear progress.
|
2010-06-09 14:06:59 +02:00
|
|
|
// 4. Fix issues with big files (such as netherlands)
|
2010-06-10 21:36:21 +02:00
|
|
|
// 1. Download tiles without using dir tiles (?)
|
2010-06-07 20:07:04 +02:00
|
|
|
|
2010-05-23 22:59:55 +02:00
|
|
|
|
2010-05-18 09:10:37 +02:00
|
|
|
|
2010-05-23 22:59:55 +02:00
|
|
|
// DONE ANDROID :
|
2010-06-07 20:07:04 +02:00
|
|
|
// 16. Support open street bugs api (supports viewing, deleting).
|
2010-06-03 11:34:04 +02:00
|
|
|
// 13. Save point as favorite & introduce favorite points dialog
|
2010-06-02 20:27:14 +02:00
|
|
|
// 29. Show opened/closed amenities (in search poi).
|
2010-06-03 11:34:04 +02:00
|
|
|
// 3. Revise osmand UI. Preparing new icons (revise UI 18, 2, ). Main application icon, back to location icon.
|
|
|
|
// 14. Show zoom level on map
|
2010-06-09 10:54:24 +02:00
|
|
|
// 35. Enable trackball navigation in android
|
2010-06-02 20:27:14 +02:00
|
|
|
|
2010-05-23 22:59:55 +02:00
|
|
|
// DONE SWING
|
2010-06-10 21:36:21 +02:00
|
|
|
// 2. Internal (Simplify MapPanel - introduce layers for it)
|
2010-05-02 01:35:00 +02:00
|
|
|
}
|