dymaptic.GeoBlazor.Pro
4.0.0
See the version list below for details.
dotnet add package dymaptic.GeoBlazor.Pro --version 4.0.0
NuGet\Install-Package dymaptic.GeoBlazor.Pro -Version 4.0.0
<PackageReference Include="dymaptic.GeoBlazor.Pro" Version="4.0.0" />
<PackageVersion Include="dymaptic.GeoBlazor.Pro" Version="4.0.0" />
<PackageReference Include="dymaptic.GeoBlazor.Pro" />
paket add dymaptic.GeoBlazor.Pro --version 4.0.0
#r "nuget: dymaptic.GeoBlazor.Pro, 4.0.0"
#:package dymaptic.GeoBlazor.Pro@4.0.0
#addin nuget:?package=dymaptic.GeoBlazor.Pro&version=4.0.0
#tool nuget:?package=dymaptic.GeoBlazor.Pro&version=4.0.0
GeoBlazor Pro
The premier mapping solution for Asp.NET Core Blazor applications.
GeoBlazor Pro 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.
✨ 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
🌟 Pro-Only Features
- Advanced Visualization Tools: Create custom labels, pie charts, and rich popups with dedicated creator tools
- ArcGIS REST Services: Direct access to ArcGIS REST endpoints for enhanced server integration
- Route Service: Powerful routing and navigation capabilities built right in
- Complete Query System: Comprehensive feature querying with all FeatureLayer and FeatureLayerView query methods
- Coming Soon: Closest facility analysis, geometry services, network analysis, print services, and more
🚀 Quick Links
- Home Page
- Live Demo Site
- Documentation
- GitHub Repository
- Join our Discord Server
- Core/Pro Features Comparison
<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.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.
If you decide to stay with .NET 9, we suggest adding the following line to your
csprojfile to disable the new compression feature:<PropertyGroup> <CompressionEnabled Condition="$(Configuration) != 'RELEASE'">false</CompressionEnabled> </PropertyGroup>
🏁 Getting Started
(from https://docs.geoblazor.com/pages/gettingStarted.html)
Create a new Blazor Web App, Blazor Server, Blazor Wasm, or Blazor Hybrid (MAUI) project.
Add a
PackageReferenceto the latest version of thedymaptic.GeoBlazor.Propackage via your IDE's Nuget Package Manager ordotnet add package dymaptic.GeoBlazor.Pro.Get an API Key from the ArcGIS Location Platform. Place this in your
appsettings.json,secrets.json(user secrets), orenvironment variables.:{ "ArcGISApiKey": "YourArcGISApiKey" }Register at licensing.dymaptic.com top purchase your GeoBlazor Pro license and generate a license key. Add the key to
appsettings.json:
{
"ArcGISApiKey": "YourArcGISApiKey",
"GeoBlazor": {
"LicenseKey": "YourGeoBlazorLicenseKey"
}
}
In the root file that defines your html (
App.razorfor Blazor Web Apps,_Layout.cshtmlfor older Blazor Server apps, andindex.htmlonly for standalone Blazor WebAssembly apps), add the following to the<head>section:<link href="_content/dymaptic.GeoBlazor.Core" /> <link href="_content/dymaptic.GeoBlazor.Pro" /> <link href="_content/dymaptic.GeoBlazor.Core/assets/esri/themes/light/main.css" rel="stylesheet" /> <link href="YourProject.styles.css" rel="stylesheet" />The
YourProject.styles.cssis the default stylesheet for your project, this line should already be present in your template, but is important for GeoBlazor to function correctly. For dark mode, replaceassets/esri/themes/light/main.csswithassets/esri/themes/dark/main.css.In
_Imports.razor(for both Server and Client projects, if applicable), 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 @using dymaptic.GeoBlazor.Pro @using dymaptic.GeoBlazor.Pro.Components @using dymaptic.GeoBlazor.Pro.Components.Geometries @using dymaptic.GeoBlazor.Pro.Components.Layers @using dymaptic.GeoBlazor.Pro.Components.Popups @using dymaptic.GeoBlazor.Pro.Components.Renderers @using dymaptic.GeoBlazor.Pro.Components.Widgets @using dymaptic.GeoBlazor.Pro.Enums @using dymaptic.GeoBlazor.Pro.Events @using dymaptic.GeoBlazor.Pro.Functions @using dymaptic.GeoBlazor.Pro.Interfaces @using dymaptic.GeoBlazor.Pro.Model @using dymaptic.GeoBlazor.Pro.Options @using dymaptic.GeoBlazor.Pro.ResultsIn
Program.cs(for both Server and Client projects, if applicable), register the GeoBlazor services:builder.Services.AddGeoBlazorPro(builder.Configuration);GeoBlazor requires Interactive Server or WebAssembly rendering enabled when using the modern
Blazor Web Apptemplates. Verify that the following lines are present in yourProgram.cs. (This is not relevant if you are using the olderBlazor Servertemplate, and does not apply to WebAssembly projects).// Server builder.Services.AddRazorComponents() .AddInteractiveServerComponents(); // or WebAssembly builder.Services.AddRazorComponents .AddInteractiveWebAssemblyComponents(); // or both builder.Services.AddRazorComponents() .AddInteractiveServerComponents() .AddInteractiveWebAssemblyComponents();and in the lower portion of the file:
// Server app.MapRazorComponents<App>() .AddInteractiveServerRenderMode(); // or WebAssembly app.MapRazorComponents<App>() .AddInteractiveWebAssemblyRenderMode() .AddAdditionalAssemblies(typeof(Counter).Assembly); // or both app.MapRazorComponents<App>() .AddInteractiveServerRenderMode() .AddInteractiveWebAssemblyRenderMode() .AddAdditionalAssemblies(typeof(Counter).Assembly);Create a Razor Component page with a map. Again for Blazor Web Apps, be sure that the
@rendermodeis defined at the page or app level (line 2 of the example below). This should beInteractiveServerfor Blazor Server,InteractiveWebAssemblyfor Blazor WebAssembly, orInteractiveAutofor the automatic switching between modes. Learn more about Blazor render modes.@page "/map" @rendermode InteractiveServer <MapView Longitude="-118.805" Latitude="34.027" Zoom="11" Style="height: 400px; width: 100%;"> <WebMap> <PortalItem PortalItemId="4a6cb60ebbe3483a805999d481c2daa5" /> </WebMap> <ScaleBarWidget Position="OverlayPosition.BottomLeft" /> </MapView>Run your application and see your map!
For complete documentation, please visit https://docs.geoblazor.com
📝 License
GeoBlazor Pro is licensed under a Commercial License with a yearly subscription fee.
| Product | Versions 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. |
-
net8.0
- dymaptic.GeoBlazor.Core (>= 4.0.0)
- Microsoft.AspNetCore.Components.Web (>= 8.0.15)
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Http (>= 8.0.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on dymaptic.GeoBlazor.Pro:
| Package | Downloads |
|---|---|
|
dymaptic.GeoBlazor.Templates
Project templates for GeoBlazor |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 4.4.4 | 103 | 1/12/2026 | |
| 4.4.2 | 99 | 1/9/2026 | |
| 4.4.0 | 203 | 12/23/2025 | |
| 4.4.0-beta-1 | 128 | 12/20/2025 | |
| 4.3.0 | 572 | 10/7/2025 | |
| 4.2.1-beta-2.1 | 153 | 9/25/2025 | |
| 4.2.1-beta-1.1 | 246 | 8/26/2025 | |
| 4.2.0 | 288 | 8/21/2025 | |
| 4.2.0-beta-5.6 | 140 | 8/19/2025 | |
| 4.2.0-beta-2.14 | 147 | 8/13/2025 | |
| 4.2.0-beta-2.8 | 159 | 8/12/2025 | |
| 4.2.0-beta-2.6 | 147 | 8/12/2025 | |
| 4.2.0-beta-1.3 | 228 | 8/6/2025 | |
| 4.1.0 | 461 | 7/9/2025 | |
| 4.0.1 | 721 | 6/3/2025 | |
| 4.0.0 | 220 | 5/30/2025 | |
| 4.0.0-beta-4.1 | 156 | 5/20/2025 | |
| 4.0.0-beta-2.1 | 128 | 4/11/2025 | |
| 4.0.0-beta-10.2 | 272 | 5/15/2025 | |
| 4.0.0-beta-1.11 | 137 | 3/28/2025 | |
| 3.2.2-beta-3 | 285 | 2/12/2025 | |
| 3.2.2-beta-2 | 210 | 2/12/2025 | |
| 3.2.1 | 369 | 2/1/2025 | |
| 3.2.0 | 221 | 1/27/2025 | |
| 3.1.1 | 446 | 8/15/2024 | |
| 0.9.21 | 353 | 8/1/2024 | |
| 0.9.18 | 305 | 7/20/2024 | |
| 0.9.17 | 283 | 6/27/2024 | |
| 0.9.15 | 216 | 6/27/2024 | |
| 0.9.14 | 231 | 6/27/2024 | |
| 0.9.13 | 365 | 5/8/2024 | |
| 0.9.12 | 380 | 4/26/2024 | |
| 0.9.10 | 437 | 3/27/2024 | |
| 0.9.9 | 301 | 3/23/2024 | |
| 0.9.8 | 246 | 3/9/2024 | |
| 0.9.7 | 219 | 3/6/2024 | |
| 0.9.5.1 | 319 | 2/11/2024 | |
| 0.9.5 | 281 | 2/10/2024 | |
| 0.9.4 | 447 | 12/20/2023 | |
| 0.9.3 | 332 | 12/13/2023 | |
| 0.9.2 | 478 | 11/26/2023 | |
| 0.9.1 | 683 | 10/12/2023 | |
| 0.9.0 | 985 | 9/14/2023 |