In this post, the autor teaches how to make a binding from a NodeJS library to Reason. However, I want to create a binding for Google Maps Javascript API, which can't be installed through NPM. Rather, it's usually loaded in the bottom of <body>
with <script>
tag.
Also, Google Maps Javascript API only exports it's functions inside the function that has been passed as argument in url (callback=funcName
). Will this work in Reason the same way as in raw JS?
How can I make this binding?