From d3f8d6442f633d8dd73b2e0ff47af915070213da Mon Sep 17 00:00:00 2001 From: nikolajecmenica Date: Fri, 22 Mar 2024 14:19:10 +0100 Subject: [PATCH] Fix for GeographyEntity.Neighborhood causes RequestFailedException --- sdk/maps/Azure.Maps.Search/src/Models/GeographicEntity.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/maps/Azure.Maps.Search/src/Models/GeographicEntity.cs b/sdk/maps/Azure.Maps.Search/src/Models/GeographicEntity.cs index 0fe82d80aaa9d..45cab814ca0b6 100644 --- a/sdk/maps/Azure.Maps.Search/src/Models/GeographicEntity.cs +++ b/sdk/maps/Azure.Maps.Search/src/Models/GeographicEntity.cs @@ -20,6 +20,6 @@ namespace Azure.Maps.Search public static GeographicEntity Neighborhood { get; } = new GeographicEntity(NeighborhoodValue); /// NeighborhoodValue. - private const string NeighborhoodValue = "Neighborhood"; + private const string NeighborhoodValue = "Neighbourhood"; } }