Hello,
we are using api.maps.ovi.com for showing a dynamic map on webpage. I have realized that webkit consumes PLENTY of RAM. Only map opening will consume 14Mb of memory. Also, map browsing will consume LOTS of RAM.
I have not found a way how stop memory consuming when you browse map. It consumes memory every time you must download new titles. At some point you run out of memory.
I have tried following code to not cache map titles in RAM. Didn't help. Any other ideas?
QWebView *webview = new QWebView(this);
webview->settings()->setMaximumPagesInCache(0);
webview->settings()->setOfflineStorageDefaultQuota(0);
webview->settings()->setObjectCacheCapacities(0,0,0);
webview->settings()->setOfflineWebApplicationCacheQuota(0);
Regards,
FoL




