https://github.com/HordRicJr/HordMaps
Modern Flutter navigation app powered by Azure Maps. GPS navigation, offline maps, voice guidance
#HordMaps
7 messages · Page 1 of 1 (latest)
Do u guys have a server where ppl can discuss?
I am facing this error while creating an azure maps resource
Validation failed. View error details
{
"code": "InvalidTemplateDeployment",
"details": [
{
"code": "RequestDisallowedByAzure",
"target": "hordmaps",
"message": "Resource 'hordmaps' was disallowed by Azure: This policy maintains a set of best available regions where your subscription can deploy resources. The objective of this policy is to ensure that your subscription has full access to Azure services with optimal performance. Should you need additional or different regions, contact support.."
}
],
"message": "The template deployment failed because of policy violation. Please see details for more information."
}
Do u know how to fix it?
Your Azure error means the deployment region isn’t allowed by a policy on your subscription (common with student or organizational accounts).
Quick fix:
- Check allowed regions:
az account list-locations -o table
-
Pick a valid region (e.g. francecentral, westeurope, eastus).
-
Redeploy with the new region in your template:
"location": "francecentral"
- If you need the blocked region, open a support ticket in the Azure Portal → Help + Support → New support request → Resource Deployment Policies.