Raul Ochoa
Raul Ochoa
What if I want to support both PNG and PBF tiles? I could use `tiles` for the PNG URLs and `data` for the PBF URLs, however, the spec for `data`...
@flippmoke, I will be more than happy to add some tests for this one 👍 . However, I find it a bit difficult as there are no tests for the...
@flippmoke, I'm really willing to add the test for this one. How should I proceed?
Sorry, I should have been more clear about what the issue was or create an issue before. Basically this allows to use URLs like: `http://i.imgur.com/yvRISk8.png?foo=bar`.
Check: ``` js > var OLD_REGEX = /[-a-zA-Z0-9@:%_\+.~#?&//=]{2,256}\.[a-z]{2,4}\b(\/[-a-zA-Z0-9@:%_\+.~#?&//=]*)?/gi undefined > var NEW_REGEX = /[-a-zA-Z0-9@:%_\+.~#?&//=]{2,256}\.[a-z]{2,4}\b(\/[-a-zA-Z0-9@:%_\+.~#?&//=]*)/gi undefined > 'http://i.imgur.com/yvRISk8.png?foo=bar'.match(OLD_REGEX) [ 'http://i.imgur.com/yvRISk8.png' ] > 'http://i.imgur.com/yvRISk8.png?foo=bar'.match(NEW_REGEX) [ 'http://i.imgur.com/yvRISk8.png?foo=bar' ] ``` I don't know if...
I just updated the branch to solve conflicts on CHANGELOG file.
I'm moving this into future developments. Let's decide later if we want to enable colorbrewer in the `cb` namespace as an alternative to the ones already present in cartocolor.
We can do what Victor proposes. Decide on what changes we want in CC, incorporate them, and add all CB palettes. We could use that new version to fix this....
@rjimenezda, I think what's missing here is no longer how to solve the initial problem but the fact that we have some errors regarding freeing resources at WebGL side. If...
Isn't #1057 duplicating this one?