A simple GUI PoC for Azure Maps Creator built with Blazor and Fluent UI
- Make an Azure Maps account.
- Obtain a primary subscription key, also known as the primary key or the subscription key.
- Create a Creator resource.
- Download the Sample Drawing package.
- You will need to be able to compile with .NET 6 Preview 5 (at the moment). Please ensure this version is installed on your machine. If a newer version is released, follow the steps to upgrade in the announcement blog post.
- For the app to work, you will need configure your azure maps. Under
BlazorMapoCreator\BlazorMapsCreator
in your cloned version of this repo, create aappsettings.Development.json
file. This will be automatically ignored by the.gitignore
file, so you can safely store your authentication information in it. Please be sure not to host any of your keys on your GitHub repository. The app expects the configuration to be found under anAzureMaps
entry, so your file should contain at least the following :
{
"AzureMaps": {
"SubscriptionKey": "<Your subscription key>",
"Geography": "<eu or us>"
}
}