Biss.Maps.Common 10.4.2

dotnet add package Biss.Maps.Common --version 10.4.2
                    
NuGet\Install-Package Biss.Maps.Common -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.Common" 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.Common" Version="10.4.2" />
                    
Directory.Packages.props
<PackageReference Include="Biss.Maps.Common" />
                    
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.Common --version 10.4.2
                    
#r "nuget: Biss.Maps.Common, 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.Common@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.Common&version=10.4.2
                    
Install as a Cake Addin
#tool nuget:?package=Biss.Maps.Common&version=10.4.2
                    
Install as a Cake Tool

Biss.Maps.Common

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

What can this NuGet package do?

Biss.Maps.Common provides the shared map domain and service layer for BISS map integrations. It contains map models, map elements, map interaction events, geometry helpers, and the central BissMapService for handling center/zoom, item rendering requests, and map/user interaction state.

This package is UI-agnostic and intended to be consumed by platform-specific map packages (for example Blazor or MAUI renderers).

What are the core features?
  • Map Service State Management - Manage map center, zoom level, map type, visible bounds, and user-position visibility through BissMapService
  • Event-Driven Map Interaction - Built-in events for center/zoom updates, coordinate clicks, map item clicks, and render requests
  • Map Elements Model - Shared item hierarchy for points, circles, polygons, polylines, and routes
  • GeoLocation Abstraction - Interface-based geolocation contract (IBissGeoLocationService) for platform implementations
  • Google Geocoding Base Service - BissBaseGeoLocationService with address-to-position and position-to-address conversion using GoogleApi
  • Geometry Utilities - GeoHelper methods for distance, midpoint, movement, and polygon area calculations
  • DI Integration - Service registration via AddBissMaps with configurable BissMapOptions
  • MVVM-Friendly Models - PropertyChanged.Fody-based model notifications where needed
Quick start
  1. Register a platform-specific implementation of IBissGeoLocationService.
  2. Register Biss.Maps.Common services and configure a default pin image.
  3. Inject BissMapService into your ViewModel/service and subscribe to events.
using Biss.Maps.Common.Extensions;
using Biss.Maps.Common.Interfaces;
using Biss.Maps.Common.MapElements;

services.AddScoped<IBissGeoLocationService, MyGeoLocationService>();
services.AddBissMaps(options =>
{
	options.DefaultPinImage = new BmPinImage("https://example.com/pin.png");
});
mapService.SetCenterAndZoom(new BissPosition(47.8125, 16.2425), BissDistance.FromKilometers(2));
mapService.AddMapItems(items);
Dependencies
BISS Packages
Package Version Purpose
Biss from BissSdkVersion Base BISS abstractions and infrastructure
NuGet Packages
Package Version Purpose
GoogleApi 5.8.12+ Google geocoding requests and response models
PropertyChanged.Fody 4.1.0+ Automatic INotifyPropertyChanged implementation
Target framework
  • net10.0
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 (2)

Showing the top 2 NuGet packages that depend on Biss.Maps.Common:

Package Downloads
Biss.Maps.Blazor

Biss Core SDK

Biss.Maps.Maui

Biss Core SDK

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.4.2 34 3/18/2026

Changelog.md