Technical & DevelopmentIntermediate
azure-maps-search-dotnet
Geocoding, routing, and weather services
Developer Setup
Setup & Installation
bash
npx skills add https://github.com/microsoft/skills --skill azure-maps-search-dotnetnpx skills add https://github.com/microsoft/skills --skill azure-maps-search-dotnetOr paste this URL into your assistant to install:
Overview
What This Skill Does
Azure Maps SDK for .NET provides location-based services through typed clients: geocoding, reverse geocoding, route directions, map tile rendering, IP geolocation, and weather data. It supports subscription key, Microsoft Entra ID, and SAS token authentication.
Application
When to use this Skill
- Configuring integration settings for custom agent workflows.
- Optimizing query execution and response latency in production.
- Developing clean, standard-compliant implementations for enterprise services.
- Troubleshooting connection timeouts and authentication handshakes.
- Monitoring API rate limits and execution pipelines programmatically.
Documentation
Show Skills.md file
Azure Maps (.NET)
Azure Maps SDK for .NET providing location-based services: geocoding, routing, rendering, geolocation, and weather.
Installation
# 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
Lines 1 - 28 of 494
Recommendations