Helium314

Results 878 comments of Helium314

@wowhhh Where did you get this information? `getNeighboringCellInfo` has been removed in API 29, and, and has been deprecated for several years, see https://issuetracker.google.com/issues/128553845. Not sure when it was added,...

Since the photos exist, SC could just look whether there are some new ones. Example how this could be done: https://github.com/Helium314/StreetComplete/commit/a9c1b316c23fb4ffb186a49f3d0244daedb55418 (rough solution, working only for the first note). Then...

If you want you can try my [modified version](https://github.com/Helium314/StreetComplete/releases) which has this capability (somewhat hidden): select other answers -> add description, and then answer normally.

There could be a connection... my phone also has "real" buttons. But when I disable the buttons and enable the navigation bar the pin is still cut off.

I can still reproduce it, same way as in initial post. > I was able to always reproduce it when my initial position (after start or switch to app) was...

Touching the pin moves the view to my location, even if the pin is cut off

I had some thoughts about this: ## Cache There is [`LruCache`](https://developer.android.com/reference/androidx/collection/LruCache) which could be pretty useful. * it automatically drops the least recently accessed entry once the size limit is...

> * LruCache cannot be used because it is Android/Java specific. But this is probably just a synchronized HashMap with a queue anyway so something simiar will be easy to...

I did some very basic implementation for `OsmQuestController` > I'm afraid that converting `TilesRect` -> `BoundingBox` -> `TilesRect` might result in a larger `TilesRect` due to floating point precision things....

> Regarding `getAllVisibleInBBox`, hmm, I cannot completely follow. The 40-60ms solution sounds more clean to me. Maybe it makes it clearer if you explicitly separate the caches for by-bbox and...