Timo Tuominen
Timo Tuominen
Changed according to http://api.jquery.com/data/
I would like to be able to do something like this, but I cannot see a way to do it: ``` $el.on("touchablemove", function (e, touch) { touch.originalEvent.preventDefault(); touch.originalEvent.stopPropagation(); }); ```...
The current drawing is quite naive and could be made much faster by hardware acceleration. For the view layer it would be fine to for instance detect changes in the...
It would be nice to have some overlays on the map that hide and show as the map is scrolled. This is of course a huge feature and would need...
Some tile servers have different sets of tiles, such as terrain or public transportation overlaid. Unfortunately I am not aware of any free/open tile server that can provide these, but...
Currently we assume the zoom, x and y come in that order. Better would be to use placeholders, such as {zoom}, {x}, {y}.
We can use dagger to decouple things like network adapters and tile stores. Maybe even view models.
Organise the classes and methods better. The "utils" folder is too big and some things there don't belong there. Also we should avoid writing closures directly into the methods, they...
Ideally the subscriptions made to view model properties should be weak, since we cannot guarantee when the view is not needed anymore. Implementing the view model life cycle https://github.com/tehmou/RxMapsAndroid/issues/8 will...
The view model life cycle is missing entirely. Implement something similar as in https://github.com/tehmou/rx-android-architecture I am starting to lean towards wrapping the properties exposed from the view model with an...