IRI.Maptor.Infrastructure.WebApi
3.0.0
dotnet add package IRI.Maptor.Infrastructure.WebApi --version 3.0.0
NuGet\Install-Package IRI.Maptor.Infrastructure.WebApi -Version 3.0.0
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="IRI.Maptor.Infrastructure.WebApi" Version="3.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="IRI.Maptor.Infrastructure.WebApi" Version="3.0.0" />
<PackageReference Include="IRI.Maptor.Infrastructure.WebApi" />
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 IRI.Maptor.Infrastructure.WebApi --version 3.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: IRI.Maptor.Infrastructure.WebApi, 3.0.0"
#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 IRI.Maptor.Infrastructure.WebApi@3.0.0
#: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=IRI.Maptor.Infrastructure.WebApi&version=3.0.0
#tool nuget:?package=IRI.Maptor.Infrastructure.WebApi&version=3.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
IRI.Maptor.Infrastructure.WebApi
Persistence adapter that loads spatial features from an HTTP Web API endpoint into an in-memory Maptor data source, so remote feature services can be used as editable map layers without changing the calling code. Edits are tracked locally and pushed back to a sync endpoint with optimistic concurrency handling.
Installation
dotnet add package IRI.Maptor.Infrastructure.WebApi
Features
WebApiDataSource— extendsMemoryDataSource(an editable in-memory vector source);LoadAsyncfetches a JSON feature-set DTO from the configured list endpoint- Change tracking and sync:
SaveChangesAsyncpushes added/updated/deleted features to the sync endpoint, applies server-assigned ids and row versions, and throwsConcurrencyConflictExceptionon conflicts - Optional server-side geometry filter:
LoadAsync(Geometry<Point>)sends the filter geometry as hex-encoded WKB - In-memory attribute text search (
SearchAsync) - Bearer-token and custom-header authentication via
WebApiSourceParameter(list URL, sync URL, SRID, id column) - Optional shared
HttpClient(WebApiSourceParameter.HttpClient) so many sources reuse pooled connections and the client's handler policies (TLS, certificate validation, proxy) instead of a throwaway client per request; loads are throttled library-wide and retried on transient failures, and a failed load surfaces asHasErrorrather than an empty layer WebApiInfrastructure— static HTTP helpers:GetFeaturesAsync,SaveChangesAsync,AddFeatureAsync,UpdateFeatureAsync,DeleteFeatureAsyncListFeaturesQueryParams— explicit query model for the list endpoint (GeometryWkbHex,SearchText)
Usage
using IRI.Maptor.Infrastructure.WebApi;
var source = new WebApiDataSource(new WebApiSourceParameter(
listUrl: "https://example.com/api/features/list",
syncUrl: "https://example.com/api/features/sync",
bearerToken: token)
{
// Optional but recommended when creating many sources: share one long-lived client so
// connections are pooled (no TLS handshake per layer) and its TLS/proxy policies apply.
// With a shared client, a null bearerToken uses the client's default Authorization header.
HttpClient = sharedClient,
});
// load features from the list endpoint
await source.LoadAsync();
// ... edit features through the data source, then push the changes:
await source.SaveChangesAsync();
NuGet package · Report issues · Back to IRI.Maptor.Infrastructure
| 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 was computed. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- IRI.Maptor.Core.Common (>= 3.0.0)
- IRI.Maptor.Core.Persistence (>= 3.0.0)
- IRI.Maptor.Core.Spatial (>= 3.0.0)
- IRI.Maptor.Core.Versioning (>= 3.0.0)
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 |
|---|---|---|
| 3.0.0 | 80 | 8/23/2026 |
| 3.0.0-alpha | 76 | 8/22/2026 |