modrana
modrana copied to clipboard
ModRana is a flexible GPS navigation system for mobile devices. This is the main upstream modRana source code repository - waiting for your pull requests & patches! :)
OSM Scout Server is now pretty robust and even contains automatic map data download & updates. So it doesn't make sense anymore to store rendered tiles in the cache indefinitely...
It should be possible to clear cached map data (which at this time mainly means map tile images) from the GUI. As this involves deleting folders, it would be preferable...
Hi, This seems perhaps to be triggered by panning / zooming too enthusiastically. Hoping the log is enough, if not let me know and I'll try to be more specific....
The current tracklog handling (recording/storage/loading/display) is one huge mess - the code was written long ago and is pretty bad. Now I know better so it's time improve it: -...
1. try to route with Monav without any Monav routing data 2. check the log - the no data error is logged 3. no notification is displayed in the Qt...
As long as projection does not change (zoom in/out) and nothing else needs to be redrawn it might make sense to draw the logging trace incrementally - one line segment...
Sometimes the GPS fix is temporarily lost or the reception gets worse for a while (going through a tunnel/waling through a building, deep valley, etc.) there might be a few...
The basic idea is to only draw what's on the screen and ignore everything else. As iterating over all points would not bring much improvement, we should divide polyline into...
We don't really have to draw all logging trace points when we are drawing a trace at low zl - we can basically skip points based on current zoomlevel (the...
Tiled rendering might help with Canvas rendering rendering performance, especially for long routes as only the currently visible tiles would need to be drawn, not the whole route. This might...