Blazor.Geolocation
8.0.0
dotnet add package Blazor.Geolocation --version 8.0.0
NuGet\Install-Package Blazor.Geolocation -Version 8.0.0
<PackageReference Include="Blazor.Geolocation" Version="8.0.0" />
paket add Blazor.Geolocation --version 8.0.0
#r "nuget: Blazor.Geolocation, 8.0.0"
// Install Blazor.Geolocation as a Cake Addin #addin nuget:?package=Blazor.Geolocation&version=8.0.0 // Install Blazor.Geolocation as a Cake Tool #tool nuget:?package=Blazor.Geolocation&version=8.0.0
Blazorators: The Source Generated geolocation
JavaScript Interop library for Blazor
The Blazor.Geolocation
package consumes the Blazor.SourceGenerators
package. It exposes a source generated IGeolocation
interface specific to Blazor WebAssembly and the geolocation
Web API.
Get started
After the NuGet package is added as a reference, call the AddGeolocationServices
method to register the IGeolocationService
service type.
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddGeolocationServices();
builder.Services.AddRazorPages();
builder.Services.AddServerSideBlazor();
var app = builder.Build();
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.MapControllers();
app.MapBlazorHub();
app.MapFallbackToPage("/_Host");
app.Run();
Anywhere needed within your Razor component, or Blazor client code — either @inject
or [Inject]
the IGeolocationService
type. The interface takes the following shape:
#nullable enable
namespace Microsoft.JSInterop;
/// <summary>
/// Source generated interface definition of the <c>Geolocation</c> type.
/// </summary>
public interface IGeolocationService
{
/// <summary>
/// Source generated implementation of <c>window.navigator.geolocation.clearWatch</c>.
/// <a href="https://developer.mozilla.org/docs/Web/API/Geolocation/clearWatch"></a>
/// </summary>
ValueTask ClearWatchAsync(double watchId);
/// <summary>
/// Source generated implementation of <c>window.navigator.geolocation.getCurrentPosition</c>.
/// <a href="https://developer.mozilla.org/docs/Web/API/Geolocation/getCurrentPosition"></a>
/// </summary>
/// <param name="component">The calling Razor (or Blazor) component.</param>
/// <param name="onSuccessCallbackMethodName">Expects the name of a
/// <c>"JSInvokableAttribute"</c> C# method with the following
/// <c>System.Action{GeolocationPosition}"</c>.</param>
/// <param name="onErrorCallbackMethodName">Expects the name of a
/// <c>"JSInvokableAttribute"</c> C# method with the following
/// <c>System.Action{GeolocationPositionError}"</c>.</param>
/// <param name="options">The <c>PositionOptions</c> value.</param>
ValueTask GetCurrentPositionAsync<TComponent>(
TComponent component,
string onSuccessCallbackMethodName,
string? onErrorCallbackMethodName = null,
PositionOptions? options = null)
where TComponent : class;
/// <summary>
/// Source generated implementation of <c>window.navigator.geolocation.watchPosition</c>.
/// <a href="https://developer.mozilla.org/docs/Web/API/Geolocation/watchPosition"></a>
/// </summary>
/// <param name="component">The calling Razor (or Blazor) component.</param>
/// <param name="onSuccessCallbackMethodName">Expects the name of a
/// <c>"JSInvokableAttribute"</c> C# method with the following
/// <c>System.Action{GeolocationPosition}"</c>.</param>
/// <param name="onErrorCallbackMethodName">Expects the name of a
/// <c>"JSInvokableAttribute"</c> C# method with the following
/// <c>System.Action{GeolocationPositionError}"</c>.</param>
/// <param name="options">The <c>PositionOptions</c> value.</param>
ValueTask<double> WatchPositionAsync<TComponent>(
TComponent component,
string onSuccessCallbackMethodName,
string? onErrorCallbackMethodName = null,
PositionOptions? options = null)
where TComponent : class;
}
Add JavaScript dependency
In the _Host.cshtml file, add the following:
<script src="_content/Blazor.Geolocation/blazorators.geolocation.g.js"></script>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. 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. |
-
net7.0
- Blazor.Serialization (>= 8.0.0)
- Microsoft.AspNetCore.Components.Web (>= 7.0.14)
-
net8.0
- Blazor.Serialization (>= 8.0.0)
- Microsoft.AspNetCore.Components.Web (>= 8.0.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Blazor.Geolocation:
Package | Downloads |
---|---|
Hexalith.Infrastructure.ClientAppOnServer
Hexalith is a set of libraries to build a micro-service architecture. |
|
Hexalith.UI.PostalAddresses
Hexalith is a set of libraries to build a micro-service architecture. |
|
Hexalith.PostalAddresses.UI
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
8.0.0 | 14,412 | 11/17/2023 |
8.0.0-rc.2.23480.2 | 400 | 10/13/2023 |
7.0.3 | 2,823 | 2/15/2023 |
7.0.2 | 316 | 2/7/2023 |
7.0.1 | 556 | 1/24/2023 |
7.0.0 | 424 | 1/11/2023 |
2.0.11 | 995 | 10/10/2022 |
2.0.10 | 514 | 5/19/2022 |
2.0.9 | 504 | 4/18/2022 |
2.0.8 | 486 | 4/14/2022 |
2.0.7 | 478 | 4/14/2022 |
2.0.6 | 491 | 4/7/2022 |
2.0.5 | 478 | 4/5/2022 |
2.0.3 | 458 | 4/5/2022 |
2.0.2 | 461 | 4/4/2022 |
2.0.1 | 595 | 4/4/2022 |