Add base map code

This was built with `npm create ol-app my-app`.
This commit is contained in:
Chandler Swift 2023-07-03 00:20:36 -05:00
commit a762f2b9a4
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
10 changed files with 1471 additions and 0 deletions

32
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,32 @@
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CI: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Clone Repository
uses: actions/checkout@v3
- name: Set Node.js Version
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build