theopensystemslab / map

Web components for tasks related to addresses and planning permission in the UK

Home Page:https://oslmap.netlify.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Place components

npm @opensystemslab/map

A library of Web Components for tasks related to addresses and planning permission in the UK built with Lit, Vite, and Ordnance Survey APIs.

Web map

<my-map /> is an OpenLayers-powered map to support drawing and modifying red-line boundaries. Other supported modes include: highlighting an OS Feature that intersects with a given address point; clicking to select and merge multiple OS Features into a single boundary; and displaying static point or polygon data. Events are dispatched with the calculated area and geojson representation when you change your drawing.

chrome-capture-2022-7-16-map

Postcode search

<postcode-search /> is a GOV.UK-styled input that validates UK postcodes using these utility methods. When a postcode is validated, an event is dispatched containing the sanitized string.

Address autocomplete

<address-autocomplete /> fetches addresses in a given UK postcode using the OS Places API and displays them using GOV.UK's accessible-autocomplete component. An event is dispatched with the OS record when you select an address.

These web components can be used independently or together following GOV.UK's Address lookup design pattern.

chrome-capture-2022-7-16 (1)

Documentation & examples

Find these components in the wild, including what we're learning through public beta user-testing, at https://www.ripa.digital/.

Bring your own API keys

Different features rely on different APIs - namely from Ordnance Survey and Mapbox.

You can set keys directly as props (eg osApiKey) on the applicable web components or via environment variables (eg VITE_APP_OS_API_KEY) for local development.

Address autocomplete utilises the OS Places API.

For the map:

  • The basemap prop defaults to "OSVectorTile" which requires the OS Vector Tiles API
    • Basemap "OSRaster" uses the OS Maps API
    • Basemap "MapboxSatellite" requires a Mapbox Access Token with with scope style:read
    • The "OSM" (OpenStreetMap) basemap is available for users without any keys, and as a fallback if any of the above basemaps fail to build
  • clickFeatures requires the OS Features API

When using Ordnance Survey APIs:

  • Update the osCopyright attribution prop with your license number
  • Configure an optional osProxyEndpoint to avoid exposing your keys (set this instead of osApiKey)
    • ** We are not currently supporting a similar proxy for Mapbox because access tokens can be restricted to specific URLs via your account

Running locally

  • Rename .env.example to .env.local and replace the values - or simply provide your API keys as props
  • Install pnpm globally if you don't have it already npm i pnpm -g
  • Install dependencies pnpm i
  • Start development server pnpm dev

Tests

Unit tests are written with Vitest, Happy Dom, and @testing-library/user-event. Each component has a main.test.ts file.

Docs

We use Pitsby for documenting our web components. It's simple to configure (pitsby.config.js plus a *.doc.js per component), has good support for vanilla web components, and an interactive playground.

  • pnpm run docs starts Pitsby in watch mode for local development
  • pnpm run docsPublish builds the site so Netlify can serve it from pitsby/

License

This repository is licensed under the Open Government License v3.

About

Web components for tasks related to addresses and planning permission in the UK

https://oslmap.netlify.app

License:Other


Languages

Language:TypeScript 73.8%Language:JavaScript 17.5%Language:HTML 4.9%Language:SCSS 3.7%Language:Shell 0.1%