Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 853 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 853 Bytes

OpenLayers.Blazor

This is a map component based on OpenLayers to different compatible maps with some features to set a marker or other shapes. The component has implemented the swiss specific coordination projection (VL03/VL95) and therefore can show content from swisstopo.

Usage

Setup

  • 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="lib/openlayers/ol.css" rel="stylesheet" />
        <link href="_content/OpenLayers.Blazor/OpenLayers.Blazor.css" rel="stylesheet" />
        <script src="lib/openlayers/dist/ol.min.js"></script>
    ...
    </head>

Examples

    <SwissMap OnClick="OnMapClick"></SwissMap>

see demo solution.