Biss.Maps.Blazor 10.4.2

dotnet add package Biss.Maps.Blazor --version 10.4.2
                    
NuGet\Install-Package Biss.Maps.Blazor -Version 10.4.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="Biss.Maps.Blazor" Version="10.4.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Biss.Maps.Blazor" Version="10.4.2" />
                    
Directory.Packages.props
<PackageReference Include="Biss.Maps.Blazor" />
                    
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 Biss.Maps.Blazor --version 10.4.2
                    
#r "nuget: Biss.Maps.Blazor, 10.4.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.
#:package Biss.Maps.Blazor@10.4.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Biss.Maps.Blazor&version=10.4.2
                    
Install as a Cake Addin
#tool nuget:?package=Biss.Maps.Blazor&version=10.4.2
                    
Install as a Cake Tool

Biss.Maps.Blazor

(C) 2026 FOTEC Forschungs- und Technologietransfer GmbH | https://www.fotec.at

What can this NuGet package do?

Biss.Maps.Blazor provides the Blazor-specific UI layer for BISS map functionality. It integrates the shared map domain from Biss.Maps.Common with Google Maps in Blazor applications, including rendering, map-item synchronization, map interaction events, and user-location integration.

The package is intended for Blazor apps using BISS architecture that work with a central BissMapService in ViewModels.

Core features
  • Blazor map component via BissMapComponent
  • DI setup extension via AddBissBlazorMaps on IServiceCollection
  • Google Maps API integration through BlazorGoogleMaps and IBlazorGoogleMapsKeyService
  • Automatic synchronization between BissMapService and rendered map state
  • Support for map elements: pin/point, polyline, polygon, circle, and route
  • Map interaction callbacks (map click, map movement, zoom changes, item events)
  • Programmatic center and zoom updates through BissMapService events
  • User location support via BrowserAPI geolocation and permission checks
  • Configurable user-location icon via BissBlazorMapProviderOptions
Target framework
  • net10.0
Quick start
  1. Register your settings (including GoogleMapsKey via IBissMapGoogleSettings):
builder.Services.AddAppSettings();
  1. Register BISS Blazor maps in Program.cs:
using Biss.Maps.Blazor.Extensions;
using Biss.Maps.Common.MapElements;

builder.Services.AddBissBlazorMaps(options =>
{
	options.DefaultPinImage = new BmPinImage("/content/Pin.png");
});
  1. Add the map component to a Razor page and bind your map service:
@using Biss.Maps.Blazor.Components

<BissMapComponent MapService="@ViewModel.MapService" Height="600px" />
  1. Control map state from your ViewModel:
MapService.SetCenterAndZoom(position, zoomLevel);
MapService.AddMapItems(items);
Dependencies
BISS packages
Package Version Purpose
Biss.Maps.Common Latest Shared map domain models, options, map service, and abstractions
NuGet packages
Package Version Purpose
Blazor.BrowserAPI 0.15.1+ Browser geolocation and permissions integration
BlazorGoogleMaps 4.15.1+ Google Maps integration for Blazor
Notes
  • Ensure a valid Google Maps API key is provided via IBissMapGoogleSettings.
  • For user-location features, browser location permission must be granted.
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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

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
10.4.2 38 3/18/2026

Changelog.md