I'm currently working on a proof-of-concept where we're using an Azure Database as our data storage. I've got one table in there containing a few bits of information, and a geometry column (geometry is all multipolygons).
Now, we'd like to be able to both see and edit these geometries in Azure Maps. From my Googling, it seems that you can't just "hook" the two together - there has to be some intermediary, which is fair enough. I've written a node.js file, currently local on my PC, which can query the data (currently filters on a field, but it'd be easy to send a bounding box).
I guess my question is "what is the recommended way to get Azure Maps and Azure Database talking?" If the preferred method is a node.js, I take it I then need to create a json/geojson from the result and have that displayed in Azure Maps, but how would I go about that? And how would I send/post information back?
I'd also like to stay as clear of Visual Studio as I can, and preferably have a lightweight solution.