dymaptic.GeoBlazor.Core 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package dymaptic.GeoBlazor.Core --version 1.1.0
NuGet\Install-Package dymaptic.GeoBlazor.Core -Version 1.1.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="dymaptic.GeoBlazor.Core" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add dymaptic.GeoBlazor.Core --version 1.1.0
#r "nuget: dymaptic.GeoBlazor.Core, 1.1.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.
// Install dymaptic.GeoBlazor.Core as a Cake Addin
#addin nuget:?package=dymaptic.GeoBlazor.Core&version=1.1.0

// Install dymaptic.GeoBlazor.Core as a Cake Tool
#tool nuget:?package=dymaptic.GeoBlazor.Core&version=1.1.0

GeoBlazor

View the live demo site!

This project wraps the ArcGIS Javascript API in a Blazor templating framework. It generates a nuget package that can be imported and consumed from any Blazor application, without directly interacting with javascript.

In addition to "hiding" the javascript implementation, the goal is also to make a simple, component-based system for declaring a map and view. For example:

<MapView Longitude="_longitude" Latitude="_latitude" Zoom="11" Style="height: 600px; width: 100%;">
    <Map ArcGISDefaultBasemap="arcgis-topographic">
        <GraphicsLayer>
            <Graphic>
                <Point Longitude="_longitude" Latitude="_latitude"/>
                <SimpleMarkerSymbol Color="@(new MapColor(226, 119, 40))">
                    <Outline Color="@(new MapColor(255, 255, 255))" Width="1"/>
                </SimpleMarkerSymbol>
            </Graphic>
            <Graphic>
                <PolyLine Paths="@_mapPaths"/>
                <SimpleLineSymbol Color="@(new MapColor(226, 119, 40))" Width="2"/>
            </Graphic>
            <Graphic>
                <Polygon Rings="@_mapRings"/>
                <SimpleFillSymbol Color="@(new MapColor(227, 139, 79, 0.8))">
                    <Outline Color="@(new MapColor(255, 255, 255))" Width="1"/>
                </SimpleFillSymbol>
                <Attributes Name="This is a Title" Description="And a Description"/>
                <PopupTemplate Title="{Name}" Content="{Description}"/>
            </Graphic>
        </GraphicsLayer>
    </Map>
</MapView>

for a 2D map with a default ArcGIS basemap, or

<SceneView Longitude="_longitude" Latitude="_latitude" Zoom="11" Style="height: 600px; width: 100%;" ZIndex="2000" Tilt="76">
    <Map Ground="world-elevation">
        <Basemap>
            <PortalItem Id="f35ef07c9ed24020aadd65c8a65d3754" />
        </Basemap>
        <GraphicsLayer>            <Graphic>
                <Point Longitude="_longitude" Latitude="_latitude"/>
                <SimpleMarkerSymbol Color="@(new MapColor(226, 119, 40))">
                    <Outline Color="@(new MapColor(255, 255, 255))" Width="1"/>
                </SimpleMarkerSymbol>
            </Graphic>
            <Graphic>
                <PolyLine Paths="@_mapPaths"/>
                <SimpleLineSymbol Color="@(new MapColor(226, 119, 40))" Width="2"/>
            </Graphic>
            <Graphic>
                <Polygon Rings="@_mapRings"/>
                <SimpleFillSymbol Color="@(new MapColor(227, 139, 79, 0.8))">
                    <Outline Color="@(new MapColor(255, 255, 255))" Width="1"/>
                </SimpleFillSymbol>
                <Attributes Name="This is a Title" Description="And a Description"/>
                <PopupTemplate Title="{Name}" Content="{Description}"/>
            </Graphic>
        </GraphicsLayer>
    </Map>
</SceneView>

for a 3D map with a basemap loaded from a PortalId.

Using the Library

Known Limitations/"Gotchas"

  • All classes inheriting from MapComponent, implement IAsyncDisposable. If you use these components in Razor markdown, it handles disposal for you. However, there may be situations (e.g., adding a new graphic on the fly), where you want to instantiate one of these components in C# code. Be aware that if you do this, you need to call DisposeAsync yourself when you are done with the object.
  • Directly calling a HashSet collection like graphicLayer.Add(graphic) or MapView.Widgets.Add(widget) does not work currently to register these components with the JavaScript API. Instead, use graphicLayer.RegisterChildComponent(graphic) or MapView.RegisterChildComponent(widget).
  • While JsRuntime calls are very efficient, some "real-time" events, like handling a mouse pointer moving, may have enough latency to notice on a round-trip to Blazor/C# and back to JavaScript. In these situations, it is our recommendation to instead write custom JavaScript code, which can handle the event completely client-side. See DisplayProjection.razor in the ...Sample.Shared library for an example of writing your own JavaScript that interacts with GeoBlazor.

Build Requirements

For the Asp.NET projects, including the core library, you can run on the latest .NET 6 SDK.

For the Maui sample project, you need the latest preview of Visual Studio.

If you have not installed node.js on your system, you will need to download and install it in order for the npm scripts to run. Please select the appropriate installer for your system.

If you have not installed powershell on your system (macOS and Linux users), or if you would like the latest version of Powershell for Windows, you will need to install Powershell and then change the "execution policies" on the system. -Complete installation instructions for Powershell [can be found here] (https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell?view=powershell-7.2).

Because Geoblazor uses an unsigned, local powershell script to copy files in the Sample.Shared project, you need to allow unsigned scripts to be run in Powershell. -The procedure to change the "execution policies" and set them to RemoteSigned are found here: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7.2#change-the-execution-policy

Projects

dymaptic.GeoBlazor.Core

  • The core logic library

dymaptic.GeoBlazor.Core.Sample.Shared

dymaptic.GeoBlazor.Core.Sample.Server

  • Asp.NET Core Blazor Server application sample
  • dotnet run --project .\samples\dymaptic.GeoBlazor.Core.Sample.Server\dymaptic.GeoBlazor.Core.Sample.Server.csproj
  • Runs on kestrel or via IIS
  • Serves pages via SignalR/Websockets
  • Can be loaded with a usersecrets file to provide the ArcGIS Api Key.

dymaptic.GeoBlazor.Core.Sample.Wasm

  • dotnet run --project .\samples\dymaptic.GeoBlazor.Core.Sample.Wasm\dymaptic.GeoBlazor.Core.Sample.Wasm.csproj
  • Runs Blazor in Web Assembly on the client browser
  • No safe storage for API key, users must input an api key or sign in from the browser

dymaptic.GeoBlazor.Core.Sample.Maui

  • Cross-platform mobile and desktop application
  • Should be run from Visual Studio Preview. Command Line support appears to be limited at this time.
  • Android and Windows versions tested

dymaptic.GeoBlazor.Interactive (not included in open source repo)

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on dymaptic.GeoBlazor.Core:

Package Downloads
dymaptic.GeoBlazor.Pro

GeoBlazor is a GIS Component Library and SDK for building interactive maps in Blazor, powered by ArcGIS. For more information, visit https://www.geoblazor.com or contact dymaptic at geoblazor@dymaptic.com

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on dymaptic.GeoBlazor.Core:

Repository Stars
dymaptic/GeoBlazor
Core Components for the Dymaptic GeoBlazor Library
Version Downloads Last updated
3.0.2-beta-11 68 4/26/2024
3.0.1 704 3/26/2024
3.0.0 222 3/23/2024
3.0.0-rc.2 113 3/9/2024
3.0.0-rc.1 82 3/6/2024
3.0.0-beta-95 273 2/24/2024
2.5.3.2 3,594 2/11/2024
2.5.3.1 250 2/10/2024
2.5.3 279 2/10/2024
2.5.2 1,537 12/20/2023
2.5.1 647 12/13/2023
2.5.0 968 11/26/2023
2.4.1-beta-1 1,004 10/19/2023
2.4.0 2,467 10/12/2023
2.3.3 2,058 9/14/2023
2.3.2 1,209 9/12/2023
2.3.1-beta-1 1,511 8/18/2023
2.3.0 2,021 8/9/2023
2.3.0-beta-1 1,605 8/2/2023
2.2.1 2,880 7/7/2023
2.2.1-beta-1.1 132 6/16/2023
2.2.0 2,886 6/2/2023
2.2.0-beta-5 1,724 5/28/2023
2.2.0-beta-4 1,992 5/23/2023
2.2.0-beta-3 720 5/20/2023
2.2.0-beta-2 742 5/20/2023
2.2.0-beta-1 1,605 5/13/2023
2.1.0 5,442 4/18/2023
2.1.0-beta-1 1,658 4/16/2023
2.0.2-beta-2 1,965 4/2/2023
2.0.2-beta-1 1,960 4/1/2023
2.0.1 2,159 3/18/2023
2.0.1-beta-3 1,624 3/5/2023
2.0.1-beta-2 1,647 3/4/2023
2.0.1-beta-1 1,818 3/4/2023
2.0.0 2,440 2/28/2023
2.0.0-beta-9 1,716 2/24/2023
2.0.0-beta-8 1,855 2/19/2023
2.0.0-beta-7 1,592 2/19/2023
2.0.0-beta-6 1,900 2/15/2023
2.0.0-beta-5 1,652 2/15/2023
2.0.0-beta-4 1,760 2/11/2023
2.0.0-beta-3 1,842 2/9/2023
2.0.0-beta-2 1,654 2/7/2023
2.0.0-beta-11 1,765 2/25/2023
2.0.0-beta-10 1,583 2/25/2023
2.0.0-beta-1 1,727 2/5/2023
1.2.0 2,548 11/13/2022
1.1.1 1,309 10/20/2022
1.1.0 1,163 10/8/2022