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
<PackageReference Include="Biss.Maps.Common" Version="10.4.2" />
<PackageVersion Include="Biss.Maps.Common" Version="10.4.2" />
<PackageReference Include="Biss.Maps.Common" />
paket add Biss.Maps.Common --version 10.4.2
#r "nuget: Biss.Maps.Common, 10.4.2"
#:package Biss.Maps.Common@10.4.2
#addin nuget:?package=Biss.Maps.Common&version=10.4.2
#tool nuget:?package=Biss.Maps.Common&version=10.4.2
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
- Register a platform-specific implementation of IBissGeoLocationService.
- Register Biss.Maps.Common services and configure a default pin image.
- 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 | Versions 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. |
-
net10.0
- Biss (>= 10.4.2)
- GoogleApi (>= 5.8.12)
- PropertyChanged.Fody (>= 4.1.0)
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