azure-maps-search-dotnet

Solid

Azure Maps SDK for .NET. Location-based services including geocoding, routing, rendering, geolocation, and weather. Use for address search, directions, map tiles, IP geolocation, and weather data. Triggers: "Azure Maps", "MapsSearchClient", "MapsRoutingClient", "MapsRenderingClient", "geocoding .NET", "route directions", "map tiles", "geolocation".

DevOps & Infrastructure 2,541 stars 295 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Azure Maps (.NET) Azure Maps SDK for .NET providing location-based services: geocoding, routing, rendering, geolocation, and weather. ## Installation ```bash # Search (geocoding, reverse geocoding) dotnet add package Azure.Maps.Search --prerelease # Routing (directions, route matrix) dotnet add package Azure.Maps.Routing --prerelease # Rendering (map tiles, static images) dotnet add package Azure.Maps.Rendering --prerelease # Geolocation (IP to location) dotnet add package Azure.Maps.Geolocation --prerelease # Weather dotnet add package Azure.Maps.Weather --prerelease # Resource Management (account management, SAS tokens) dotnet add package Azure.ResourceManager.Maps --prerelease # Required for authentication dotnet add package Azure.Identity ``` **Current Versions**: - `Azure.Maps.Search`: v2.0.0-beta.5 - `Azure.Maps.Routing`: v1.0.0-beta.4 - `Azure.Maps.Rendering`: v2.0.0-beta.1 - `Azure.Maps.Geolocation`: v1.0.0-beta.3 - `Azure.ResourceManager.Maps`: v1.1.0-beta.2 ## Environment Variables ```bash AZURE_MAPS_SUBSCRIPTION_KEY=<your-subscription-key> AZURE_MAPS_CLIENT_ID=<your-client-id> # For Entra ID auth ``` ## Authentication ### Subscription Key (Shared Key) ```csharp using Azure; using Azure.Maps.Search; var subscriptionKey = Environment.GetEnvironmentVariable("AZURE_MAPS_SUBSCRIPTION_KEY"); var credential = new AzureKeyCredential(subscriptionKey); var client = new MapsSearchClient(credential); ``` ### Microsoft Entra ID (Recommended for Production) ...

Details

Author
microsoft
Repository
microsoft/skills
Created
4 months ago
Last Updated
yesterday
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category