Kacper Golinski

Results 12 comments of Kacper Golinski

@magician11 I've encountered a similar problem. It was because `setState` was called after the component was unmounted. To handle this, I used `clearTimeout` function. Something like: ``` js class RestartingTypist...

@runette Can we open Issues on the forked repo? It is either disabled (https://softwareengineering.stackexchange.com/a/179470) or I can't find it.

@runette Thanks and no worries.

@danschultzer Is there any plan for how to solve this challenge? Maybe there is some example for that? Thanks for this library 👍 👍 EDIT: I'm playing with custom user...

@msbarry Thanks for the reply. I'm afraid I won't be able to help with development since I know nothing about Java 😬 I will try to play with suggested workarounds...

Merging two mbtiles using `tilelive-copy` gave me broken results (empty tiles) but it looked ok using `tile-join` (from https://github.com/mapbox/tippecanoe). It saves space but tileserver is returning empty tiles after zoom...

How do you deal with this in the meantime? Setting `enableAppHangTracking` to false?

I think there is some issue with ember 1.13. After upgrading to ember 1.13.2 map displays fine, but markers don't show up (despite this msg in console`DEBUG: [google-maps] creating new...

I asked question about this on forum https://discuss.graphhopper.com/t/barrier-lift-gate-is-blocking-bike/8398 I have similar node near me (Poland) which blocks routing through official cycling route. I would vote for ignoring `locked=yes` if there...

I did this change in my fork to allow bicycles when there is `locked=yes`. Maybe something like this could go to the main branch? [commit](https://github.com/caspg/graphhopper/commit/d8eae9499cb5e7803d4eac88eee243328f275956) ```java if (restrictedValues.contains(firstValue)) return true;...