Azure Function App with Azure Map
Photo by Andrew Neel on Pexels.com In this blog, we showed how to expose two Azure Map API via Azure Function App . The source code is at this G it repo . We can expose more API following the same pattern. All the information on development and deploying application are in the README.md file. Let's run through it. 1. Setup 1.1 Create Resource Group, Azure Map and Function App Create Azure Map Create Function App When creating Function App, please have the followings Runtime stack = Python Version=3.8 (or a version that matches your Python version) and add an Application Setting under Configuration Section. This allows the function app to make calls to Azure Map REST API. SUBSCRIPTION_ID=<the primary/secondary key of Azure map> Add Application Setting You should have the followings in your Resource Group once you are done Apps in Resource Group 1.2 Git clone On your laptop, Git clone the repository git clone https://github.com/dennisseah/azure-fn-map.git 1.3 Setup Py