Lukáš Karas
Lukáš Karas
can you share your complete style file please? are there any warnings during stylesheet initialization?
Hi. Error message `Can't open routing service` may be caused by various problems. But in general, it seems that your downloaded map for offline usage is corrupted somehow. What country...
build is passing in all images, just some tests are failing...
Thank you for report. It is tricky to avoid such binding loops in QML many times, but the UI works fine usually. What exactly do you mean that performance is...
The rendering is done on the cpu with the Qt api. See MapRenderer class. And yes, rendering is not instant, I know, but there is no easy way how to...
In the database itself, there is no relation between areas and nodes inside the area. Anyway, your task may be generalize a bit - as feature request for supporting basic...
> It seems the memory footprint of the app is bigger after this commit. It is kind of expected. Just keep in mind that HiDPI support was rewritten later: https://github.com/Framstag/libosmscout/pull/1622...
In Sailfish app, I created service that check memory [usage periodically](https://github.com/Karry/osmscout-sailfish/blob/master/src/MemoryManager.cpp#L353) (because api for memory notifications is broken) and when memory is under pressure, call [`DBThread::FlushCaches`](https://github.com/Framstag/libosmscout/blob/master/libosmscout-client/include/osmscoutclient/DBThread.h#L282). From DBThread is the...
Beside that, I call `malloc_trim` to return memory from C++ allocator back to the kernel... It may impact performance, but it is handy, when you really need to release memory...
> I noticed too using QImage instead QPixmap, the cpu usage increases to 5%. So I reverted all commits of the PR. Wow... It really should not happened. When you...