Jackson Hu

Results 52 comments of Jackson Hu

Thanks for your reply. > * You can use the `combine_polygons_below` layer option to merge adjoining building outlines together. This results in smaller (and therefore faster) geometries. Add it to...

Oops my bad, the second one: ```lua if (building~="" or write_name) and way:Holds("name") then way:LayerAsCentroid("poi_detail") SetNameAttributes(way) if write_name then rank=6 else rank=25 end way:AttributeNumeric("rank", rank) end ``` ...should be related...

@systemed yea you are right! My machine just got stuck at around `Zoom level 14, writing tile 16605113 of 16605115` for the whole night, versus the #383 takes only an...

Hi @sodik82 The `@react-native-community/slider` does support Windows and web, but the web support I think it's not stabilized yet...

@h2zero Same issue here. As long as I removed the `if(ctxt->om->om_pkthdr_len > 8) {` it solves the problem. I've also tried your patch, it works for me. Here's my project:...

> Are you also getting this issue when using a custom phone app? I haven't tried that yet as my app isn't ready at the moment. I was using nRF...

Hi @h2zero , I've just got my own app working. It's a Flutter app with `flutter_reactive_ble` library. I can confirm the write is working.

Hi @espresso3389 , Thanks for your reply. I had a closer look and indeed it's much harder than I thought. I guess I should have a try on using PDF.js...

Hi @espresso3389 , Thanks for the info. I'm thinking to do something more complex, probably by putting a canvas on top of it so that I can even display stylus...

Looks like for Apple PDFKit I can use `findString()` to do so, and get a `PDFSelection` back. For Android, maybe with the PDFBox port, it's also doable but less trivial:...