dymaptic.GeoBlazor.Pro
4.0.0-beta-2.1
dotnet add package dymaptic.GeoBlazor.Pro --version 4.0.0-beta-2.1
NuGet\Install-Package dymaptic.GeoBlazor.Pro -Version 4.0.0-beta-2.1
<PackageReference Include="dymaptic.GeoBlazor.Pro" Version="4.0.0-beta-2.1" />
<PackageVersion Include="dymaptic.GeoBlazor.Pro" Version="4.0.0-beta-2.1" />
<PackageReference Include="dymaptic.GeoBlazor.Pro" />
paket add dymaptic.GeoBlazor.Pro --version 4.0.0-beta-2.1
#r "nuget: dymaptic.GeoBlazor.Pro, 4.0.0-beta-2.1"
#addin nuget:?package=dymaptic.GeoBlazor.Pro&version=4.0.0-beta-2.1&prerelease
#tool nuget:?package=dymaptic.GeoBlazor.Pro&version=4.0.0-beta-2.1&prerelease
<style> #geoblazor-logo { background-color: #d6d6d6; padding: 1rem; border-radius: 1rem; } </style>
<p style="text-align: center;"> <img id="geoblazor-logo" src="./GeoBlazor-Pro-Logo.png" alt="GeoBlazor Pro" width="300"> </p>
<p style="text-align: center;"> <b>The premier mapping solution for Asp.NET Core Blazor applications.</b> </p>
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.
🏁 Getting Started
(from https://docs.geoblazor.com/pages/gettingStarted.html)
Create a new Blazor Web App (.NET 8), Blazor Server, Blazor Wasm, or Blazor Hybrid (MAUI) project.
Add a
PackageReference
to the latest version of thedymaptic.GeoBlazor.Pro
package via your IDE's Nuget Package Manager ordotnet add package dymaptic.GeoBlazor.Pro
.Get an API Key from the ArcGIS Portal. For Blazor Server, place it in your appsettings.json:
{ "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 (
_Layout.cshtml
,index.html
, orApp.razor
), 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" />
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 @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.Results
In
Program.cs
, register the GeoBlazor services:builder.Services.AddGeoBlazorPro(builder.Configuration);
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>
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. |
-
net8.0
- dymaptic.GeoBlazor.Core (>= 4.0.0-beta-2.1)
- Microsoft.AspNetCore.Components.Web (>= 8.0.11)
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Http (>= 8.0.1)
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 | |
---|---|---|---|
4.0.0-beta-2.1 | 67 | 4/11/2025 | |
4.0.0-beta-1.11 | 87 | 3/28/2025 | |
3.2.2-beta-3 | 181 | 2/12/2025 | |
3.2.2-beta-2 | 142 | 2/12/2025 | |
3.2.1 | 177 | 2/1/2025 | |
3.2.0 | 130 | 1/27/2025 | |
3.1.1 | 348 | 8/15/2024 | |
0.9.21 | 238 | 8/1/2024 | |
0.9.18 | 214 | 7/20/2024 | |
0.9.17 | 179 | 6/27/2024 | |
0.9.15 | 126 | 6/27/2024 | |
0.9.14 | 146 | 6/27/2024 | |
0.9.13 | 272 | 5/8/2024 | |
0.9.12 | 299 | 4/26/2024 | |
0.9.10 | 358 | 3/27/2024 | |
0.9.9 | 209 | 3/23/2024 | |
0.9.8 | 180 | 3/9/2024 | |
0.9.7 | 155 | 3/6/2024 | |
0.9.5.1 | 251 | 2/11/2024 | |
0.9.5 | 204 | 2/10/2024 | |
0.9.4 | 368 | 12/20/2023 | |
0.9.3 | 245 | 12/13/2023 | |
0.9.2 | 416 | 11/26/2023 | |
0.9.1 | 610 | 10/12/2023 | |
0.9.0 | 910 | 9/14/2023 |