SpatialFocus.OpenLayers.Blazor 1.5.10-alpha.0.8

This is a prerelease version of SpatialFocus.OpenLayers.Blazor.
dotnet add package SpatialFocus.OpenLayers.Blazor --version 1.5.10-alpha.0.8
NuGet\Install-Package SpatialFocus.OpenLayers.Blazor -Version 1.5.10-alpha.0.8
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="SpatialFocus.OpenLayers.Blazor" Version="1.5.10-alpha.0.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SpatialFocus.OpenLayers.Blazor --version 1.5.10-alpha.0.8
#r "nuget: SpatialFocus.OpenLayers.Blazor, 1.5.10-alpha.0.8"
#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 SpatialFocus.OpenLayers.Blazor as a Cake Addin
#addin nuget:?package=SpatialFocus.OpenLayers.Blazor&version=1.5.10-alpha.0.8&prerelease

// Install SpatialFocus.OpenLayers.Blazor as a Cake Tool
#tool nuget:?package=SpatialFocus.OpenLayers.Blazor&version=1.5.10-alpha.0.8&prerelease

OpenLayers.Blazor

This is a map component based on OpenLayers to show different types and layers of maps from sources like OpenStreet, Bing, SwissTopo ary WMTS/WMS compatible source with some features like markes or shape drawing. The component has implemented the swiss specific coordination projection (VL03/VL95) and therefore can project map content from swisstopo (https://map.geo.admin.ch/).

Major Changes

Starting fromn version 1.5, the coordinates are represented and defined according to EPSG. This means the input for a Coordinate object will be switched: Coordinate(1197650, 2604200) > Coordinate(2604200, 1197650) or new Coordinate(51, 0) > Coordinate(0, 51)

Demo/Examples

https://openlayers-blazor-demo.laurent-christen.ch/

Usage

Setup

  • install nuget package dotnet add package OpenLayers.Blazor

  • Download the openlayers distribution js/css files https://github.com/openlayers/openlayers or from other sources and include them in the index.html file:

    <head>
    ...
        <link href="https://cdnjs.cloudflare.com/ajax/libs/openlayers/8.1.0/ol.min.css" rel="stylesheet" />
        <link href="_content/SpatialFocus.OpenLayers.Blazor/OpenLayers.Blazor.css" rel="stylesheet" />
        <script src="https://cdnjs.cloudflare.com/ajax/libs/openlayers/8.1.0/dist/ol.min.js"></script>
    ...
    </head>
    

Examples

    <SwissMap Style="height:800px">
        <Popup>
            <div id="popup" class="ol-box">
                @if (context is Marker marker)
                {
                    <h3>@marker.Title</h3>
                    <p>@marker.Coordinate.X / @marker.Coordinate.Y</p>
                }
            </div>
        </Popup>
        <Features>
            <Marker Type="MarkerType.MarkerPin" Coordinate="new Coordinate(2604200, 1197650)"></Marker>
            <Marker Type="MarkerType.MarkerFlag" Coordinate="new Coordinate(2624200, 1177650)" Title="Hallo" BackgroundColor="#449933" Popup></Marker>
            <Line Points="new []{new Coordinate(1197650, 2604200), new Coordinate(2624200, 1177650)}" BorderColor="cyan"></Line>
        </Features>
    </SwissMap>

    <OpenStreetMap Style="height:480px; width:640px" Zoom="5" Center="new Coordinate(0, 51)">
        <Layers>
            <Layer SourceType="SourceType.TileWMS"
                    Url="https://sedac.ciesin.columbia.edu/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image%2Fpng&TRANSPARENT=true&LAYERS=gpw-v3%3Agpw-v3-population-density_2000&LANG=en"
                    Opacity=".3"
                    CrossOrigin="anonymous"></Layer>
        </Layers>
    </OpenStreetMap>
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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.5.10-alpha.0.8 56 4/18/2024
1.5.10-alpha.0.6 51 4/17/2024
1.5.10-alpha.0.2 46 4/10/2024
1.2.1-alpha.0.11 181 11/5/2023
1.2.1-alpha.0.10 254 9/11/2023
1.2.1-alpha.0.9 93 9/8/2023
1.2.1-alpha.0.8 72 9/5/2023
1.2.1-alpha.0.7 60 9/5/2023
0.0.0-alpha.0 66 9/5/2023