Taras Vozniuk

Results 64 comments of Taras Vozniuk

Went through your repo. Partially defined(if my terminology is right) variant (Thunk) has different runtime representation and doesn’t contain debug metadata symbol attached to it. When I redefined Thunk as...

@MargaretKrutikova: Please reference https://github.com/MargaretKrutikova/reason-react-reductive-example/pull/1 with polymorphic variant used. Thanks a lot for introducing `extensible variant type`. In general circumstances it should be preferred to polymorphic, but until we figure out...

Yeah, good point, will keep this one open to track the progress on this

thanks for the feedback. Btw, I am absolutely not familiar with llvm itself, but since swift has its own front end and then it compiles to Swift IR and only...

Great, thanks!

@aerotypebharat: What fontface is used in your screenshot? Do you have a public fontface that renders Devanagari correctly at https://fonts.google.com/ ? You can then use https://github.com/orangemug/font-glyphs to generate pre-rendered fonts...

@yangster23: To rephrase what @rbrundritt mentioned: The reason why you cannot navigate with tabs in [MultiplePointWithPopups.tsx](https://github.com/WiredSolutions/react-azure-maps-playground/blob/master/src/examples/MultiplePointWithPopup.tsx) is the fact that at [MultiplePointWithPopup.tsx#L128-L134](https://github.com/WiredSolutions/react-azure-maps-playground/blob/75d49feb4c8758b30d8b603d08f1760b279d888e/src/examples/MultiplePointWithPopup.tsx#L128-L134) a single dynamic popup is used that gets...

@yangster23: I've created a PR that fixes the above mentioned issue: https://github.com/WiredSolutions/react-azure-maps/pull/96 You may reference the full example at [AccessiblePopups.fix.tsx](https://gist.github.com/ambientlight/d186d2435c2399eb9f41c9c3fcd38947). Until the fix gets merged, you may install `react-azure-maps` from...

> Error : react-azure-maps.es5.js:132 Uncaught Error: The layer '[object Object]' has not been added to the map and its rendered features cannot be retrieved. > this error is coming on...

@psrednicki, @msasinowski: Actually the thing that solved deduplication at bundling for me was adding `azure-maps-drawing-tools` to plugins.externals.exclude in rollup config (https://github.com/ambientlight/react-azure-maps/blob/4b868b6335d120b4f549f4afa0d873cb6989b6d1/rollup.config.js#L38) I am unfamiliar with rollup, I'm checking the docs...