JGUZDV.Blazor.Components.Map
1.0.0-beta1.0.3
This is a prerelease version of JGUZDV.Blazor.Components.Map.
dotnet add package JGUZDV.Blazor.Components.Map --version 1.0.0-beta1.0.3
NuGet\Install-Package JGUZDV.Blazor.Components.Map -Version 1.0.0-beta1.0.3
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="JGUZDV.Blazor.Components.Map" Version="1.0.0-beta1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="JGUZDV.Blazor.Components.Map" Version="1.0.0-beta1.0.3" />
<PackageReference Include="JGUZDV.Blazor.Components.Map" />
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 JGUZDV.Blazor.Components.Map --version 1.0.0-beta1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: JGUZDV.Blazor.Components.Map, 1.0.0-beta1.0.3"
#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 JGUZDV.Blazor.Components.Map@1.0.0-beta1.0.3
#: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=JGUZDV.Blazor.Components.Map&version=1.0.0-beta1.0.3&prerelease
#tool nuget:?package=JGUZDV.Blazor.Components.Map&version=1.0.0-beta1.0.3&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
JGUZDV.Blazor.Components.Map
Blazor-Komponentenbibliothek zur Darstellung einer Karte auf Basis von maplibre-gl.
Installation
NuGet-Paket referenzieren:
JGUZDV.Blazor.Components.Map
Namespace importieren:
@using JGUZDV.Blazor.Components.Map
Komponente
BlazorMap
Parameter
Center(required): Startkoordinate alsLngLatZoom(default:15): Start-ZoomMaxBounds: optionale Bounding-BoxBaseLayerStyleUrl: URL der Basis-Style-DefinitionAdditionalLayerStyleUrls: zusätzliche Layer-Style-URLsAdditionalSourceData: zusätzliche GeoJSON-QuellenPathPrefix: Präfix für relative Pfade (Sprites/Bilder/Sources)IsServerRendered: serverseitige Initialisierung aktivierenMapClicked: Callback für KartenklickMapIsInitialized: Callback nach Initialisierung (true/false)
Öffentliche Methoden (@ref)
PanToPolygon(List<LngLat> bounds)AddStyleLayerFromUrl(string url)SetSourceDataFromUrl(string sourceId, string data)SetSourceData(string sourceId, FeatureCollection data)AddLayer(object data)RemoveLayer(string layerId)
Hinweis: Diese Methoden sind nur im interaktiven Modus verfügbar (IsServerRendered == false).
Beispiel (interaktiv)
<div style="height:300px;">
<BlazorMap Center="new LngLat(8.2377, 49.9934)"
Zoom="15"
MapClicked="OnMapClicked"
MapIsInitialized="OnMapInitialized" />
</div>
@code {
private void OnMapClicked(MapMouseEventArgs args)
{
Console.WriteLine($"Klick bei {args.LngLat?.Lng}, {args.LngLat?.Lat}");
}
private Task OnMapInitialized(bool initialized)
{
return Task.CompletedTask;
}
}
Beispiel (server-rendered)
<div style="height:300px;">
<BlazorMap Center="new LngLat(8.2377, 49.9934)"
IsServerRendered="true"
AdditionalSourceData="_sourceData" />
</div>
| 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- GeoJSON.Text (>= 1.1.0)
- Microsoft.AspNetCore.Components.Web (>= 10.0.4)
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 |
|---|---|---|
| 1.0.0-beta1.0.3 | 95 | 6/18/2026 |
| 1.0.0-beta1.0.2 | 166 | 6/17/2026 |
| 1.0.0-beta1.0.1 | 81 | 3/25/2026 |