dymaptic.GeoBlazor.Core 4.0.0-beta-8.2

This is a prerelease version of dymaptic.GeoBlazor.Core.
dotnet add package dymaptic.GeoBlazor.Core --version 4.0.0-beta-8.2
                    
NuGet\Install-Package dymaptic.GeoBlazor.Core -Version 4.0.0-beta-8.2
                    
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="dymaptic.GeoBlazor.Core" Version="4.0.0-beta-8.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="dymaptic.GeoBlazor.Core" Version="4.0.0-beta-8.2" />
                    
Directory.Packages.props
<PackageReference Include="dymaptic.GeoBlazor.Core" />
                    
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 dymaptic.GeoBlazor.Core --version 4.0.0-beta-8.2
                    
#r "nuget: dymaptic.GeoBlazor.Core, 4.0.0-beta-8.2"
                    
#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=dymaptic.GeoBlazor.Core&version=4.0.0-beta-8.2&prerelease
                    
Install dymaptic.GeoBlazor.Core as a Cake Addin
#tool nuget:?package=dymaptic.GeoBlazor.Core&version=4.0.0-beta-8.2&prerelease
                    
Install dymaptic.GeoBlazor.Core as a Cake Tool

<style> #geoblazor-logo { background-color: #5D2E8E; padding: 1rem; border-radius: 1rem; }

#pro-link { background-color: #d6d6d6; padding: 1rem; border-radius: 1rem; width: 300px; } </style>

<p style="text-align: center;"> <img id="geoblazor-logo" src="./gb_white_text_300px.png" alt="GeoBlazor" width="300"> </p>

<p style="text-align: center;"> <b>The premier mapping solution for Asp.NET Core Blazor applications.</b> </p>

GeoBlazor brings the power of the ArcGIS Maps SDK for JavaScript into your Blazor applications with 100% C# code - no JavaScript required. Create beautiful, interactive maps with industry-leading geospatial capabilities while maintaining a pure .NET development experience.

<p style="text-align: center;"> <em> <a href="https://www.nuget.org/packages/dymaptic.GeoBlazor.Pro"> <img id="pro-link" alt="GeoBlazor Pro" src="./Go-GeoBlazor-Pro.png" /> </a> </em> </p>

Build Issues Pull Requests

CORE

NuGet Downloads

PRO

NuGet Downloads

Discord

✨ Key Features

  • Pure C# Development: Access the complete ArcGIS Maps SDK without writing a single line of JavaScript
  • Rich Component Library: Includes maps, layers, widgets, geometries, and more
  • Interactive Maps: Build responsive, interactive maps with minimal code
  • Flexible Architecture: Works with Blazor Server, WebAssembly, and Hybrid MAUI apps
  • Enterprise-Ready: Supports ArcGIS Enterprise for organizations with internal GIS infrastructure

<p align="center"> <img src="https://docs.geoblazor.com/assets/images/webmap.png" alt="GeoBlazor Map Example" width="800"> </p>

🧰 Installation

    dotnet add package dymaptic.GeoBlazor.Core

Or for the Pro version with additional features:

    dotnet add package dymaptic.GeoBlazor.Pro

Note: .NET 9 can cause very slow build times due to its new static asset compression. If you need faster builds, we recommend staying on .NET 8 for now, and using a global.json file to pin your SDK build version to .NET 8. See our open request for a fix here.

🏁 Getting Started

(from https://docs.geoblazor.com/pages/gettingStarted.html)

  1. Create a new Blazor Web App (.NET 8), Blazor Server, Blazor Wasm, or Blazor Hybrid (MAUI) project.

  2. Add a PackageReference to the latest version of the dymaptic.GeoBlazor.Core package via your IDE's Nuget Package Manager or dotnet add package dymaptic.GeoBlazor.Core.

  3. Get an API Key from the ArcGIS Portal. For Blazor Server, place it in your appsettings.json:

    {
        "ArcGISApiKey": "YourArcGISApiKey"
    }
    
  4. Register at licensing.dymaptic.com for a free GeoBlazor Core Registration key. Add the key to appsettings.json:

    {
        "ArcGISApiKey": "YourArcGISApiKey",
        "GeoBlazor": {
            "RegistrationKey": "YourGeoBlazorRegistrationKey"
        }
    }
  1. In the root file that defines your html (_Layout.cshtml, index.html, or App.razor), add the following to the <head> section:

    <link href="_content/dymaptic.GeoBlazor.Core"/>
    <link href="_content/dymaptic.GeoBlazor.Core/assets/esri/themes/light/main.css" rel="stylesheet" />
    <link href="YourProject.styles.css" rel="stylesheet" />
    
  2. In _Imports.razor, add the GeoBlazor namespaces:

    @using dymaptic.GeoBlazor.Core
    @using dymaptic.GeoBlazor.Core.Attributes
    @using dymaptic.GeoBlazor.Core.Components
    @using dymaptic.GeoBlazor.Core.Components.Geometries
    @using dymaptic.GeoBlazor.Core.Components.Layers
    @using dymaptic.GeoBlazor.Core.Components.Popups
    @using dymaptic.GeoBlazor.Core.Components.Renderers
    @using dymaptic.GeoBlazor.Core.Components.Symbols
    @using dymaptic.GeoBlazor.Core.Components.Views
    @using dymaptic.GeoBlazor.Core.Components.Widgets
    @using dymaptic.GeoBlazor.Core.Enums
    @using dymaptic.GeoBlazor.Core.Events
    @using dymaptic.GeoBlazor.Core.Exceptions
    @using dymaptic.GeoBlazor.Core.Extensions
    @using dymaptic.GeoBlazor.Core.Functions
    @using dymaptic.GeoBlazor.Core.Interfaces
    @using dymaptic.GeoBlazor.Core.Model
    @using dymaptic.GeoBlazor.Core.Options
    @using dymaptic.GeoBlazor.Core.Results
    
  3. In Program.cs, register the GeoBlazor services:

    builder.Services.AddGeoBlazor(builder.Configuration);
    
  4. Create a Razor Component page with a map:

    @page "/"
    
    <MapView Longitude="-118.805" Latitude="34.027" Zoom="11" Style="height: 400px; width: 100%;"> 
        <WebMap>
            <PortalItem Id="4a6cb60ebbe3483a805999d481c2daa5" />
        </WebMap>
        <ScaleBarWidget Position="OverlayPosition.BottomLeft" />
    </MapView>
    
  5. Run your application and see your map!

For complete documentation, please visit https://docs.geoblazor.com

🔄 Versions

GeoBlazor comes in two editions:

  • GeoBlazor Core - Free, open-source edition with essential mapping capabilities
  • GeoBlazor Pro - Commercial edition with advanced features, 3D support, and priority support

Check out our features comparison to see which edition is right for you.

📝 License

GeoBlazor Core is licensed under the MIT License.

GeoBlazor Pro is licensed under a Commercial License with a yearly subscription fee.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on dymaptic.GeoBlazor.Core:

Package Downloads
dymaptic.GeoBlazor.Pro

GeoBlazor is a GIS Component Library and SDK for building interactive maps in Blazor, powered by ArcGIS. For more information, visit https://www.geoblazor.com or contact dymaptic at geoblazor@dymaptic.com

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.0.0-beta-8.2 96 5/15/2025
4.0.0-beta-2.1 124 4/11/2025
4.0.0-beta-1.13 111 3/28/2025
3.2.2-beta-2 250 2/12/2025
3.2.1 2,723 2/1/2025
3.2.0 336 1/27/2025
3.1.2-beta-1 489 12/20/2024
3.1.1 4,333 8/15/2024
3.1.0 653 8/1/2024
3.0.3-beta-4 166 7/20/2024
3.0.3-beta-3 298 6/27/2024
3.0.3-beta-2 146 6/27/2024
3.0.3-beta-1 157 6/27/2024
3.0.2 2,476 5/8/2024
3.0.2-beta-11 301 4/26/2024
3.0.1 1,459 3/26/2024
3.0.0 326 3/23/2024 3.0.0 is deprecated because it has critical bugs.
3.0.0-rc.2 159 3/9/2024
3.0.0-rc.1 114 3/6/2024
3.0.0-beta-95 339 2/24/2024
2.5.3.2 5,546 2/11/2024
2.5.3.1 322 2/10/2024 2.5.3.1 is deprecated because it has critical bugs.
2.5.3 356 2/10/2024 2.5.3 is deprecated because it has critical bugs.
2.5.2 1,859 12/20/2023
2.5.1 769 12/13/2023
2.5.0 1,129 11/26/2023
2.4.1-beta-1 1,075 10/19/2023
2.4.0 2,644 10/12/2023
2.3.3 2,208 9/14/2023
2.3.2 1,296 9/12/2023
2.3.1-beta-1 1,591 8/18/2023
2.3.0 2,161 8/9/2023
2.3.0-beta-1 1,700 8/2/2023
2.2.1 2,979 7/7/2023
2.2.1-beta-1.1 173 6/16/2023
2.2.0 3,377 6/2/2023
2.2.0-beta-5 1,814 5/28/2023
2.2.0-beta-4 2,333 5/23/2023
2.2.0-beta-3 771 5/20/2023
2.2.0-beta-2 800 5/20/2023
2.2.0-beta-1 1,693 5/13/2023
2.1.0 5,568 4/18/2023
2.1.0-beta-1 1,786 4/16/2023
2.0.2-beta-2 2,070 4/2/2023
2.0.2-beta-1 2,073 4/1/2023
2.0.1 2,360 3/18/2023
2.0.1-beta-3 1,702 3/5/2023
2.0.1-beta-2 1,726 3/4/2023
2.0.1-beta-1 1,968 3/4/2023
2.0.0 2,614 2/28/2023
2.0.0-beta-9 1,799 2/24/2023
2.0.0-beta-8 1,978 2/19/2023
2.0.0-beta-7 1,679 2/19/2023
2.0.0-beta-6 2,004 2/15/2023
2.0.0-beta-5 1,758 2/15/2023
2.0.0-beta-4 1,843 2/11/2023
2.0.0-beta-3 1,927 2/9/2023
2.0.0-beta-2 1,733 2/7/2023
2.0.0-beta-11 1,863 2/25/2023
2.0.0-beta-10 1,658 2/25/2023
2.0.0-beta-1 1,821 2/5/2023
1.2.0 3,425 11/13/2022
1.1.1 1,410 10/20/2022
1.1.0 1,239 10/8/2022