AzureMapsControl.Components 2.0.0-net9.10

This is a prerelease version of AzureMapsControl.Components.
This package has a SemVer 2.0.0 package version: 2.0.0-net9.10+1.
dotnet add package AzureMapsControl.Components --version 2.0.0-net9.10
                    
NuGet\Install-Package AzureMapsControl.Components -Version 2.0.0-net9.10
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AzureMapsControl.Components" Version="2.0.0-net9.10" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AzureMapsControl.Components" Version="2.0.0-net9.10" />
                    
Directory.Packages.props
<PackageReference Include="AzureMapsControl.Components" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AzureMapsControl.Components --version 2.0.0-net9.10
                    
#r "nuget: AzureMapsControl.Components, 2.0.0-net9.10"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=AzureMapsControl.Components&version=2.0.0-net9.10&prerelease
                    
Install AzureMapsControl.Components as a Cake Addin
#tool nuget:?package=AzureMapsControl.Components&version=2.0.0-net9.10&prerelease
                    
Install AzureMapsControl.Components as a Cake Tool

Nuget Nuget (with prereleases) Downloads Build Unit test release codecov

This library allows you to use Azure Maps inside your razor application.

Custom Azure Map

Install the Nuget Package

This library is available on Nuget as AzureMapsControl.Components.

Setup

Add the css and scripts

You will need to add the atlas script and css files as well as the script generated by the library on your application.

<link href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" rel="stylesheet" />
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
<script src="_content/AzureMapsControl.Components/azure-maps-control.js"></script>

Or use the minimized version :

<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
<script src="_content/AzureMapsControl.Components/azure-maps-control.min.js"></script>

Register the Components

You will need to pass the authentication information of your AzureMaps instance to the library. SubscriptionKey, Aad and Anonymous authentication are supported. You will need to call the AddAzureMapsControl method on your services.

You can authenticate using a subscription key :

    // This method gets called by the runtime. Use this method to add services to the container.
    // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddRazorPages();
        services.AddServerSideBlazor();
        
        services.AddAzureMapsControl(configuration => configuration.SubscriptionKey = "Your Subscription Key");
    }

Or using Azure Active Directory:

public void ConfigureServices(IServiceCollection services)
        {
            services.AddRazorPages();
            services.AddServerSideBlazor(options => options.DetailedErrors = true);

            services.AddAzureMapsControl(configuration => {
                configuration.AadAppId = "Your Aad App Id";
                configuration.AadTenant = "Your Aad Tenant";
                configuration.ClientId = "Your Client Id";
            });
        }

The Anonymous authentication requires only a ClientId:

public void ConfigureServices(IServiceCollection services)
        {
            services.AddRazorPages();
            services.AddServerSideBlazor(options => options.DetailedErrors = true);

            services.AddAzureMapsControl(configuration => configuration.ClientId = Configuration["AzureMaps:ClientId"])
        }

It also needs to fetch the token to send to the requests of the atlas library. For that, you have to override the azureMapsControl.Extensions.getTokenCallback method on your application after referencing azure-maps-control.min.js and resolve the token in it. For example :

@page "/"
@namespace AzureMapsControl.Sample.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@{
    Layout = null;
}

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>AzureMapsControl.Sample</title>
    <base href="~/" />
    <link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css" />
    <link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/drawing/0.1/atlas-drawing.min.css" type="text/css" />
    <style>
        body {
            margin: 0;
        }

        #map {
            position: absolute;
            width: 100%;
            min-width: 290px;
            height: 100%;
        }
    </style>
</head>
<body>
    <app>
        <component type="typeof(App)" render-mode="ServerPrerendered" />
    </app>
    <script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
    <script src="https://atlas.microsoft.com/sdk/javascript/drawing/0.1/atlas-drawing.min.js"></script>
    <script src="_content/AzureMapsControl.Components/azure-maps-control.min.js"></script>
    <script src="_framework/blazor.server.js"></script>
    <script type="text/javascript">
        azureMapsControl.Extensions.getTokenCallback = (resolve, reject, map) => {
            const url = "url_of_my_token_endpoint";
            fetch(url).then(function (response) {
                return response.text();
            }).then(function (token) {
                resolve(token);
            });        
        };
    </script>
</body>
</html>

How to use

Want to contribute ?

Contributions are welcome! One of the best way to start is to take a look at the list of issues where help is wanted.

If you need a new feature which is not listed on the issues, feel free to open a new one. Take also a look at the Contributing guidelines.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0-net9.10 154 12/19/2024
2.0.0-net9.9 48 12/19/2024
2.0.0-net9.8 47 12/19/2024
2.0.0-net9.7 48 12/19/2024
2.0.0-net9.6 50 12/18/2024
2.0.0-net9.5 48 12/18/2024
2.0.0-net9.4 47 12/18/2024
2.0.0-net9.3 46 12/18/2024
2.0.0-net9.2 50 12/18/2024
1.16.1 16,857 6/18/2024
1.16.0 166 6/14/2024
1.16.0-alpha0003 106 6/14/2024
1.16.0-alpha0001 331 3/27/2024
1.15.0 6,240 3/12/2024
1.15.0-alpha0002 104 3/12/2024
1.14.1 462 2/28/2024
1.14.0 1,011 12/22/2023
1.14.0-alpha0015 122 12/22/2023
1.13.0 25,302 9/14/2022
1.13.0-alpha0001 260 9/13/2022
1.12.0 3,121 8/3/2022
1.12.0-alpha0038 179 8/3/2022
1.12.0-alpha0028 219 7/8/2022
1.12.0-alpha0019 169 7/7/2022
1.12.0-alpha0011 173 6/14/2022
1.12.0-alpha0004 249 2/2/2022
1.12.0-alpha0003 191 2/2/2022
1.11.0 9,000 11/12/2021
1.11.0-alpha0015 239 11/12/2021
1.10.0 383 11/8/2021
1.10.0-net60-alpha0001 185 10/19/2021
1.10.0-alpha0010 246 11/8/2021
1.9.0 1,360 8/4/2021
1.9.0-alpha0006 326 8/4/2021
1.8.3 1,031 7/14/2021
1.8.3-beta0001 286 7/14/2021
1.8.2 456 7/13/2021
1.8.2-beta0001 327 7/13/2021
1.8.1 574 6/25/2021
1.8.1-beta0001 332 6/25/2021
1.8.0 428 6/19/2021
1.8.0-html-marker-laye0001 300 6/8/2021
1.8.0-alpha0003 301 6/19/2021
1.7.1 540 6/8/2021
1.7.1-beta0001 295 6/3/2021
1.7.0 523 5/31/2021
1.7.0-alpha0014 319 5/31/2021
1.7.0-alpha0004 281 5/18/2021
1.7.0-alpha0001 289 5/13/2021
1.6.1 591 5/18/2021
1.6.1-beta0001 285 5/18/2021
1.6.0 472 5/7/2021
1.6.0-alpha0050 318 5/7/2021
1.6.0-alpha0031 334 5/7/2021
1.6.0-alpha0015 310 5/7/2021
1.5.2 430 5/6/2021
1.5.2-beta0001 328 5/6/2021
1.5.1 677 4/30/2021
1.5.1-beta0001 288 4/30/2021
1.5.0 441 4/26/2021
1.5.0-alpha0016 295 4/23/2021
1.4.0 412 4/23/2021
1.4.0-alpha0005 292 4/20/2021
1.3.0 463 4/19/2021
1.3.0-beta0003 318 4/17/2021
1.3.0-beta0002 298 4/17/2021
1.3.0-beta0001 312 4/17/2021
1.3.0-alpha0001 287 4/16/2021
1.2.0 398 4/15/2021
1.2.0-alpha0004 271 4/15/2021
1.1.0 458 4/13/2021
1.1.0-alpha0015 262 4/13/2021
1.0.0 492 4/9/2021
1.0.0-beta0008 301 3/26/2021
1.0.0-beta0007 310 3/24/2021
1.0.0-beta0006 317 3/23/2021
1.0.0-beta0005 316 3/22/2021
1.0.0-beta0004 306 3/19/2021
1.0.0-beta0003 305 3/19/2021
1.0.0-beta0002 310 3/19/2021
1.0.0-beta0001 292 3/19/2021
0.17.1 395 4/6/2021
0.17.1-beta0001 276 4/5/2021
0.17.0 461 3/24/2021
0.16.0 427 3/23/2021
0.15.0 634 3/8/2021
0.15.0-alpha0038 324 3/8/2021
0.14.0 439 3/5/2021
0.14.0-alpha0003 279 3/5/2021
0.13.0 450 3/3/2021
0.13.0-alpha0001 289 3/3/2021
0.12.0 525 2/18/2021
0.12.0-typescript0001 304 2/18/2021
0.12.0-publish-typescri0001 308 2/18/2021
0.12.0-alpha0018 278 2/18/2021
0.11.0 435 2/17/2021
0.11.0-alpha0003 274 2/17/2021
0.10.1 441 2/15/2021
0.10.0 406 2/15/2021
0.10.0-alpha0011 265 2/15/2021
0.10.0-alpha0005 276 2/15/2021
0.9.0 472 1/24/2021
0.9.0-alpha0013 372 1/24/2021
0.9.0-alpha0006 339 1/3/2021
0.9.0-alpha0003 328 12/8/2020
0.8.1 482 1/3/2021
0.8.0 562 12/8/2020
0.8.0-beta0001 304 12/8/2020
0.8.0-alpha0005 344 11/25/2020
0.7.1 494 11/25/2020
0.7.0 479 11/25/2020
0.7.0-beta0001 347 11/25/2020
0.7.0-alpha0002 334 11/24/2020
0.6.0-beta0001 360 11/24/2020
0.6.0-alpha0005 346 11/24/2020
0.6.0-alpha0001 332 11/23/2020
0.5.2 1,714 11/24/2020
0.5.1 471 11/23/2020
0.5.0 456 11/19/2020
0.4.0 463 11/12/2020
0.3.0-beta0001 367 11/12/2020
0.3.0-alpha0019 306 11/19/2020
0.3.0-alpha0010 346 11/12/2020
0.3.0-alpha0004 363 11/12/2020
0.2.0 466 11/12/2020
0.2.0-beta0003 408 11/12/2020
0.2.0-beta0002 369 11/12/2020
0.2.0-beta0001 352 11/11/2020
0.1.0 541 11/11/2020
0.1.0-beta0002 370 11/11/2020
0.1.0-beta0001 363 11/11/2020
0.1.0-alpha0236 391 11/11/2020
0.1.0-alpha0116 350 11/11/2020
0.1.0-alpha0112 368 11/11/2020
0.1.0-alpha0097 368 11/11/2020
0.1.0-alpha0091 375 11/11/2020
0.1.0-alpha0090 377 11/10/2020
0.1.0-alpha0089 375 11/10/2020
0.1.0-alpha0088 394 11/10/2020
0.1.0-alpha0087 391 11/10/2020
0.1.0-alpha0086 381 11/10/2020
0.1.0-alpha0085 395 11/10/2020
0.1.0-alpha0084 378 11/10/2020
0.1.0-alpha0083 374 11/10/2020
0.1.0-alpha0082 427 11/9/2020
0.1.0-alpha0081 437 11/9/2020
0.1.0-alpha0080 429 11/9/2020
0.1.0-alpha0079 392 11/7/2020
0.1.0-alpha0077 576 11/6/2020
0.1.0-alpha0076 545 11/6/2020
0.1.0-alpha0074 459 11/6/2020
0.1.0-alpha0071 397 11/6/2020
0.0.1-ci-20201106.2 310 11/6/2020
0.0.1-ci-20201106.1 270 11/6/2020
0.0.1-ci-20201105.7 311 11/5/2020
0.0.1-ci-20201105.6 324 11/5/2020
0.0.1-ci-20201105.5 328 11/5/2020
0.0.1-ci-20201105.4 320 11/5/2020
0.0.1-ci-20201105.3 266 11/5/2020
0.0.1-ci-20201105.2 276 11/5/2020
0.0.1-ci-20201105.1 260 11/5/2020
0.0.1-ci-20201104.2 274 11/4/2020
0.0.1-ci-20201104.1 284 11/4/2020
0.0.1-ci-20201030.5 276 10/30/2020
0.0.1-ci-20201030.4 285 10/30/2020
0.0.1-ci-20201030.3 298 10/30/2020
0.0.1-ci-20201030.2 283 10/30/2020
0.0.1-ci-20201030.1 265 10/30/2020
0.0.1-ci-20201029.3 273 10/29/2020
0.0.1-ci-20201029.2 290 10/29/2020
0.0.1-ci-20201029.1 275 10/29/2020
0.0.1-ci-20201028.1 259 10/28/2020
0.0.1-ci-20201027.1 277 10/27/2020
0.0.1-ci-20201026.2 307 10/26/2020
0.0.1-ci-20201026.1 253 10/26/2020
0.0.1-ci-20201023.2 309 10/23/2020
0.0.1-ci-20201023.1 281 10/23/2020
0.0.1-ci-20201022.1 275 10/22/2020
0.0.1-ci-20201008.1 259 10/8/2020
0.0.1-ci-20201005.1 314 10/5/2020
0.0.1-ci-20200407.1 314 4/7/2020
0.0.1-ci-20200406.3 318 4/6/2020
0.0.1-ci-20200406.2 327 4/6/2020
0.0.1-ci-20200406.1 330 4/6/2020
0.0.1-ci-20200403.5 315 4/3/2020
0.0.1-ci-20200403.4 331 4/3/2020
0.0.1-ci-20200403.3 332 4/3/2020
0.0.1-ci-20200403.2 320 4/3/2020
0.0.1-ci-20200403.1 320 4/3/2020
0.0.1-ci-20200402.2 323 4/2/2020
0.0.1-ci-20200402.1 352 4/2/2020