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-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-06-15 11:33:49 +02:00
|
|
|
// 31. Translation.
|
2010-06-19 19:01:40 +02:00
|
|
|
// DONE : partially olga
|
2010-06-19 23:39:03 +02:00
|
|
|
// TODO : everywhere put non-nls, check all translated into russian [swing could not be translated]
|
|
|
|
|
|
|
|
// 34. Suppport navigation for calculated route (example of get route from internet is in swing app).
|
|
|
|
// DONE : MiniMap done, Routing settings done, RouteLayer done, RoutingHelper done.
|
|
|
|
// TODO : Test again?
|
|
|
|
|
|
|
|
// 37. Get rid of exit button (!). Think about when notification should go & how clear resources if it is necessary
|
|
|
|
// DONE :
|
|
|
|
// TODO : add to app settings preference (Refresh indexes).
|
2010-06-15 11:33:49 +02:00
|
|
|
|
|
|
|
// 42. Revise UI (icons/layouts). Support different devices. Add inactive/focus(!) icon versions.
|
2010-06-19 19:01:40 +02:00
|
|
|
// Some icons are not fine (as back menu from map - it is blured).
|
2010-06-12 17:08:59 +02:00
|
|
|
|
2010-06-15 11:33:49 +02:00
|
|
|
// 32. Introduce POI predefined filters (car filter(other-fuel, transportation-car_wash, show-car) and others)
|
|
|
|
// DONE : back end (POI filter object, save, delete, read)
|
|
|
|
// TODO : activity to create/edit new index, activity to read both user defined/osm standard, add actions to remove/create
|
2010-06-14 13:59:30 +02:00
|
|
|
|
2010-06-15 11:33:49 +02:00
|
|
|
// 33. Build transport locations. Create transport index (transport-stops) (investigate)
|
|
|
|
// GOT : Victor
|
|
|
|
// DONE: Load transport routes in swing.
|
|
|
|
// TODO: Create transport index, create transport activity
|
2010-06-11 12:28:09 +02:00
|
|
|
|
2010-06-15 11:33:49 +02:00
|
|
|
|
|
|
|
|
2010-06-19 11:41:01 +02:00
|
|
|
// FUTURE RELEASES
|
|
|
|
// 48. Enable change favourite point (for example fav - "car") means last point you left car. It is not static point.
|
2010-06-17 10:07:39 +02:00
|
|
|
// 43. Enable poi filter by name (?)
|
2010-06-19 11:41:01 +02:00
|
|
|
// 44. Show gps status (possibly open existing gps-compass app (free) or suggest to install it - no sense to write own activity)
|
|
|
|
// 45. Get clear <Use internet> settings. Move that setting on top settings screen.
|
|
|
|
// That setting should rule all activities that use internet. It should ask whenever internet is used
|
|
|
|
// (would you like to use internet for that operation - if using internet is not checked).
|
|
|
|
// Internet using now for : edit POI osm, show osm bugs layer, download tiles.
|
2010-06-19 19:01:40 +02:00
|
|
|
// 47. Internet connectivity could be checked before trying to use
|
2010-06-19 23:39:03 +02:00
|
|
|
// 48. Implement console application that prepare indexes to upload on server...
|
|
|
|
// 0) run in background 1) download from internet 2) generates indices for Europe (take care about memory) 3) upload?
|
2010-06-19 19:01:40 +02:00
|
|
|
// 46. Implement downloading strategy for tiles (do not load 17 zoom, load only 16 for example) - try to scale 15 zoom for 17 (?)
|
2010-06-17 10:07:39 +02:00
|
|
|
// 40. Support simple vector road rendering (require new index file) (?)
|
|
|
|
// 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-19 19:01:40 +02:00
|
|
|
|
2010-05-31 20:48:18 +02:00
|
|
|
|
2010-06-07 20:07:04 +02:00
|
|
|
// BUGS Android
|
2010-06-09 14:27:05 +02:00
|
|
|
// 5. Improvement : Implement caching files existing on FS, implement specific method in RM
|
2010-06-12 00:05:43 +02:00
|
|
|
// Introducing cache of file names that are on disk (creating new File() consumes a lot of memory)
|
|
|
|
|
2010-06-07 20:07:04 +02:00
|
|
|
|
|
|
|
// TODO swing
|
2010-06-17 10:07:39 +02:00
|
|
|
// 4. Fix issues with big files (such as netherlands) - save memory (!) - very slow due to transport index !
|
2010-06-11 15:44:37 +02:00
|
|
|
// Current result : for big file (1 - task 60-80% time, 90% memory)
|
2010-06-10 21:36:21 +02:00
|
|
|
// 1. Download tiles without using dir tiles (?)
|
2010-06-17 10:07:39 +02:00
|
|
|
// 5. Improve address indexing (use relations).
|
|
|
|
// Use relation "postal_code" to assign postcodes, use relation "a6" (to accumulate streets!),
|
|
|
|
// "a3" to read all cities & define boundaries for city (& define that street in city).
|
2010-06-14 13:59:30 +02:00
|
|
|
|
|
|
|
// BUGS Swing
|
2010-05-23 22:59:55 +02:00
|
|
|
|
|
|
|
// DONE ANDROID :
|
2010-06-16 17:05:06 +02:00
|
|
|
// 36. Postcode search
|
|
|
|
// 8. Enable change POI directly on map (requires OSM login)
|
2010-06-15 14:54:24 +02:00
|
|
|
// 45. Autozoom feature (for car navigation)
|
|
|
|
// 44. Introduce settings presets (car/bicycle/pedestrian/default) - show different icons for car (bigger), possibly change fonts, position
|
2010-06-14 13:59:30 +02:00
|
|
|
// 20. Implement save track/route to gpx
|
2010-06-02 20:27:14 +02:00
|
|
|
|
2010-05-23 22:59:55 +02:00
|
|
|
// DONE SWING
|
2010-06-14 12:53:07 +02:00
|
|
|
|
2010-05-02 01:35:00 +02:00
|
|
|
}
|