BlazorGoogleMaps 4.13.0
dotnet add package BlazorGoogleMaps --version 4.13.0
NuGet\Install-Package BlazorGoogleMaps -Version 4.13.0
<PackageReference Include="BlazorGoogleMaps" Version="4.13.0" />
<PackageVersion Include="BlazorGoogleMaps" Version="4.13.0" />
<PackageReference Include="BlazorGoogleMaps" />
paket add BlazorGoogleMaps --version 4.13.0
#r "nuget: BlazorGoogleMaps, 4.13.0"
#addin nuget:?package=BlazorGoogleMaps&version=4.13.0
#tool nuget:?package=BlazorGoogleMaps&version=4.13.0
BlazorGoogleMaps
Blazor interop for GoogleMap library
Usage
- Provide your Google API key to BlazorGoogleMaps with one of the following methods. (You can get a key here: https://developers.google.com/maps/documentation/javascript/get-api-key)
Use the bootstrap loader with a key service (recommended):
services.AddBlazorGoogleMaps("YOUR_KEY_GOES_HERE");
OR specify google api libraries and/or version:
services.AddBlazorGoogleMaps(new GoogleMapsComponents.Maps.MapApiLoadOptions("YOUR_KEY_GOES_HERE")
{
Version = "beta",
Libraries = "places,visualization,drawing,marker",
});
OR to do something more complex (e.g. looking up keys asynchronously), implement a Scoped key service and add it with something like:
services.AddScoped<IBlazorGoogleMapsKeyService, YourServiceImplementation>();
OR (legacy - not recommended) Add google map script HEAD tag to wwwroot/index.html in Client side or _Host.cshtml in Server Side.
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY_GOES_HERE&v=3"></script>
- Add path to project javascript functions file in wwwroot/index.html for Blazor WASM, or in _Host.cshtml or _HostLayout.cshtml for Blazor Server.
<script src="_content/BlazorGoogleMaps/js/objectManager.js"></script>
If you want to use marker clustering add this script as well:
<script src="https://unpkg.com/@googlemaps/markerclusterer/dist/index.min.js"></script>
- Using the component is the same for both Blazor WASM and Blazor Server
@page "/map"
@using GoogleMapsComponents
@using GoogleMapsComponents.Maps
<h1>Google Map</h1>
<div style="height:@Height">
<GoogleMap @ref="@_map1" Id="map1" Options="@mapOptions" Height="100%" OnAfterInit="AfterMapRender"></GoogleMap>
</div>
@functions {
private GoogleMap _map1;
private MapOptions mapOptions;
protected override void OnInitialized()
{
mapOptions = new MapOptions()
{
Zoom = 13,
Center = new LatLngLiteral()
{
Lat = 13.505892,
Lng = 100.8162
},
MapTypeId = MapTypeId.Roadmap
};
}
private async Task AfterMapRender()
{
_bounds = await LatLngBounds.CreateAsync(_map1.JsRuntime);
}
}
OR Render markers with Blazor (currently only with v=beta
version of google-maps, and specify a MapId
)
@page "/map"
@using GoogleMapsComponents
@using GoogleMapsComponents.Maps
<h1>Google Map</h1>
<AdvancedGoogleMap @ref="@_map1" Id="map1" Options="@mapOptions">
@foreach (var markerRef in Markers)
{
<MarkerComponent
@key="markerRef.Id"
Lat="@markerRef.Lat"
Lng="@markerRef.Lng"
Clickable="@markerRef.Clickable"
Draggable="@markerRef.Draggable"
OnClick="@(() => markerRef.Active = !markerRef.Active)"
OnMove="pos => markerRef.UpdatePosition(pos)">
<p>I am a blazor component</p>
</MarkerComponent>
}
</AdvancedGoogleMap>
@code {
private List<MarkerData> Markers =
[
new MarkerData { Id = 1, Lat = 13.505892, Lng = 100.8162 },
];
private AdvancedGoogleMap? _map1;
private MapOptions mapOptions =new MapOptions()
{
Zoom = 13,
Center = new LatLngLiteral()
{
Lat = 13.505892,
Lng = 100.8162
},
MapId = "DEMO_MAP_ID", //required for blazor markers
MapTypeId = MapTypeId.Roadmap
};
public class MarkerData
{
public int Id { get; set; }
public double Lat { get; set; }
public double Lng { get; set; }
public bool Clickable { get; set; } = true;
public bool Draggable { get; set; }
public bool Active { get; set; }
public void UpdatePosition(LatLngLiteral position)
{
Lat = position.Lat;
Lng = position.Lng;
}
}
}
Samples
Please check server side samples https://github.com/rungwiroon/BlazorGoogleMaps/tree/master/ServerSideDemo which are most to date
ClientSide demos online https://rungwiroon.github.io/BlazorGoogleMaps/mapEvents
Breaking change from 4.0.0 Migrate to .NET 8 #286.
Breaking change from 3.0.0 Migrate from Newtonsoft.Json to System.Text.Json.
Breaking change from 2.0.0 LatLngLiteral constructor's parameters order changed #173
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 is compatible. 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. net10.0 was computed. 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. |
-
net8.0
- Microsoft.AspNetCore.Components (>= 8.0.16)
- Microsoft.AspNetCore.Components.Web (>= 8.0.16)
- Microsoft.JSInterop (>= 8.0.16)
- OneOf (>= 3.0.271)
- System.Text.Json (>= 8.0.5)
-
net9.0
- Microsoft.AspNetCore.Components (>= 9.0.5)
- Microsoft.AspNetCore.Components.Web (>= 9.0.5)
- Microsoft.JSInterop (>= 9.0.5)
- OneOf (>= 3.0.271)
- System.Text.Json (>= 9.0.5)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on BlazorGoogleMaps:
Package | Downloads |
---|---|
templar-common-libary
Package Description |
|
Magiq.Blazor
Provides views and services to be used in Blazor Client and Server projects. |
|
AeroBlazor
A blazor library, extending MudBlazor |
|
Microfrontend.one
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
4.13.0 | 1,794 | 6/5/2025 |
4.12.2 | 453 | 6/2/2025 |
4.12.1 | 353 | 6/1/2025 |
4.12.0 | 331 | 5/28/2025 |
4.11.3 | 154 | 5/28/2025 |
4.11.2 | 1,450 | 5/13/2025 |
4.11.1 | 5,875 | 4/20/2025 |
4.11.0 | 496 | 4/14/2025 |
4.10.1 | 1,716 | 4/1/2025 |
4.10.0 | 576 | 3/30/2025 |
4.9.5 | 246 | 3/28/2025 |
4.9.4 | 186 | 3/27/2025 |
4.9.3 | 5,095 | 2/23/2025 |
4.9.2 | 13,490 | 12/14/2024 |
4.9.1 | 4,818 | 11/21/2024 |
4.9.0 | 2,036 | 11/17/2024 |
4.8.0 | 294 | 11/16/2024 |
4.7.15 | 135 | 11/16/2024 |
4.7.14 | 11,520 | 10/9/2024 |
4.7.13 | 7,791 | 10/3/2024 |
4.7.12 | 1,610 | 9/29/2024 |
4.7.11 | 10,254 | 8/29/2024 |
4.7.10 | 997 | 8/28/2024 |
4.7.9 | 141 | 8/28/2024 |
4.7.8 | 192 | 8/28/2024 |
4.7.7 | 1,669 | 8/25/2024 |
4.7.6 | 5,081 | 8/12/2024 |
4.7.5 | 205 | 8/11/2024 |
4.7.4 | 156 | 8/10/2024 |
4.7.3 | 2,400 | 7/29/2024 |
4.7.2 | 2,873 | 7/25/2024 |
4.7.1 | 7,082 | 7/8/2024 |
4.7.0 | 325 | 7/4/2024 |
4.6.2 | 375 | 7/2/2024 |
4.6.1 | 205 | 7/1/2024 |
4.6.0 | 1,095 | 6/26/2024 |
4.5.0 | 938 | 6/22/2024 |
4.4.2 | 4,884 | 6/12/2024 |
4.4.1 | 256 | 6/11/2024 |
4.4.0 | 238 | 6/10/2024 |
4.3.0 | 7,161 | 5/15/2024 |
4.2.0 | 6,276 | 4/25/2024 |
4.1.2 | 8,650 | 3/21/2024 |
4.1.1 | 497 | 3/20/2024 |
4.1.0 | 38,100 | 2/2/2024 |
4.0.3 | 943 | 1/18/2024 |
4.0.2 | 4,504 | 12/20/2023 |
4.0.1 | 1,893 | 12/17/2023 |
4.0.0 | 282 | 12/15/2023 |
3.3.2 | 26,117 | 12/15/2023 |
3.3.1 | 9,977 | 12/5/2023 |
3.2.5 | 2,668 | 11/23/2023 |
3.2.4 | 198 | 11/23/2023 |
3.2.3 | 8,438 | 10/30/2023 |
3.2.2 | 1,834 | 10/25/2023 |
3.2.1 | 274 | 10/25/2023 |
3.2.0 | 4,760 | 9/18/2023 |
3.1.4 | 3,896 | 9/9/2023 |
3.1.3 | 599 | 9/3/2023 |
3.1.2 | 7,821 | 8/1/2023 |
3.1.1 | 5,219 | 7/19/2023 |
3.1.0 | 2,091 | 7/10/2023 |
3.0.8 | 303 | 7/9/2023 |
3.0.7 | 11,244 | 6/9/2023 |
3.0.6 | 6,988 | 5/7/2023 |
3.0.5 | 3,835 | 4/13/2023 |
3.0.4 | 511 | 4/11/2023 |
3.0.3 | 1,425 | 4/6/2023 |
3.0.2 | 651 | 4/3/2023 |
3.0.1 | 390 | 4/1/2023 |
3.0.0 | 1,898 | 3/28/2023 |
2.5.7 | 12,836 | 3/14/2023 |
2.5.6 | 997 | 3/13/2023 |
2.5.5 | 3,951 | 2/24/2023 |
2.5.4 | 10,363 | 2/11/2023 |
2.5.3 | 994 | 2/6/2023 |
2.5.2 | 3,140 | 1/20/2023 |
2.5.1 | 1,253 | 1/17/2023 |
2.4.4 | 12,221 | 12/13/2022 |
2.4.3 | 6,954 | 11/29/2022 |
2.4.2 | 420 | 11/29/2022 |
2.4.1 | 1,568 | 11/25/2022 |
2.3.1 | 2,899 | 11/14/2022 |
2.2.6 | 26,988 | 9/5/2022 |
2.2.5 | 1,653 | 8/27/2022 |
2.2.4 | 487 | 8/27/2022 |
2.2.3 | 1,484 | 8/22/2022 |
2.2.2 | 617 | 8/19/2022 |
2.2.1 | 31,478 | 6/28/2022 |
2.2.0 | 3,037 | 6/20/2022 |
2.1.1 | 2,502 | 5/23/2022 |
2.1.0 | 2,285 | 5/3/2022 |
2.0.6 | 776 | 4/30/2022 |
2.0.5 | 1,788 | 4/21/2022 |
2.0.4 | 1,537 | 4/15/2022 |
2.0.3 | 1,188 | 4/1/2022 |
2.0.2 | 625 | 3/30/2022 |
2.0.1 | 559 | 3/30/2022 |
2.0.0 | 1,280 | 3/29/2022 |
1.5.5 | 11,687 | 2/24/2022 |
1.5.4 | 735 | 2/21/2022 |
1.5.3 | 2,048 | 2/16/2022 |
1.5.2 | 764 | 2/15/2022 |
1.5.1 | 4,219 | 2/7/2022 |
1.4.2 | 7,172 | 12/15/2021 |
1.4.1 | 7,286 | 12/8/2021 |
1.4.0 | 437 | 12/7/2021 |
1.3.0 | 602 | 12/2/2021 |
1.2.1 | 17,557 | 10/11/2021 |
1.1.8 | 1,416 | 9/27/2021 |
1.1.7 | 600 | 9/25/2021 |
1.1.6 | 467 | 9/23/2021 |
1.1.5 | 1,445 | 9/16/2021 |
1.1.4 | 1,348 | 9/12/2021 |
1.1.3 | 630 | 9/9/2021 |
1.1.2 | 831 | 9/7/2021 |
1.1.1 | 1,380 | 8/30/2021 |
1.0.17 | 2,315 | 7/27/2021 |
1.0.16 | 911 | 7/17/2021 |
1.0.15 | 9,064 | 4/29/2021 |
1.0.14 | 5,914 | 4/9/2021 |
1.0.13 | 32,124 | 3/18/2021 |
1.0.12 | 4,474 | 2/13/2021 |
1.0.11 | 648 | 2/10/2021 |
1.0.10 | 507 | 2/10/2021 |
1.0.9 | 485 | 2/10/2021 |
1.0.8 | 851 | 2/3/2021 |
1.0.7 | 4,219 | 1/30/2021 |
1.0.6 | 558 | 1/28/2021 |
1.0.5 | 1,038 | 1/18/2021 |
1.0.4 | 723 | 1/14/2021 |
1.0.3 | 520 | 1/13/2021 |
1.0.2 | 1,482 | 1/1/2021 |
1.0.1 | 931 | 12/25/2020 |
1.0.0 | 538 | 12/25/2020 |
0.9.3 | 534 | 12/25/2020 |
0.9.2 | 781 | 12/22/2020 |
0.9.1 | 1,244 | 12/4/2020 |
0.9.0 | 6,987 | 10/23/2020 |
0.8.1 | 1,163 | 10/4/2020 |
0.8.0 | 1,852 | 9/16/2020 |
0.7.1 | 1,728 | 8/9/2020 |
0.6.14 | 615 | 8/4/2020 |
0.6.13 | 770 | 8/2/2020 |
0.6.12 | 800 | 7/28/2020 |
0.6.11 | 594 | 7/27/2020 |
0.6.10 | 3,409 | 7/20/2020 |
0.6.9 | 696 | 7/14/2020 |
0.6.8 | 729 | 7/9/2020 |
0.6.7 | 674 | 7/7/2020 |
0.6.6 | 743 | 6/30/2020 |
0.6.5 | 1,131 | 6/4/2020 |
0.6.4 | 1,667 | 5/16/2020 |
0.6.3 | 1,099 | 5/5/2020 |
0.6.2 | 1,691 | 4/16/2020 |
0.6.1 | 796 | 3/27/2020 |
0.6.0 | 605 | 3/27/2020 |
0.5.9 | 626 | 3/26/2020 |
0.5.8 | 1,020 | 3/25/2020 |
0.5.7 | 607 | 3/25/2020 |
0.5.6 | 711 | 3/17/2020 |
0.5.5 | 1,630 | 3/7/2020 |
0.5.4 | 982 | 2/9/2020 |
0.5.3 | 708 | 2/8/2020 |
0.5.2 | 1,904 | 1/24/2020 |
0.5.1-alpha | 907 | 12/9/2019 |
0.4.8-alpha | 516 | 12/1/2019 |
0.4.7-alpha | 601 | 10/18/2019 |
0.4.6-alpha | 554 | 9/26/2019 |
0.4.5-alpha | 410 | 8/20/2019 |
0.4.0-alpha | 426 | 6/15/2019 |
0.3.0 | 958 | 6/1/2019 |
0.1.0 | 1,088 | 2/2/2019 |