Skip to content

Commit 7390889

Browse files
committed
OpenLayers 6 migration
use legecy openlayers for now refactor and pick up classes from openlayersmapoverlays update styles and controls remove old code and resources
1 parent 01760cb commit 7390889

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+2264
-3898
lines changed

.github/dependabot.yml

+5
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,8 @@ updates:
1010
labels:
1111
- build-infra
1212

13+
updates:
14+
- package-ecosystem: "npm"
15+
directory: "/"
16+
schedule:
17+
interval: "weekly"

.github/workflows/build.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
env:
12+
CI: true
13+
14+
jobs:
15+
build:
16+
name: Build
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- name: Clone Repository
21+
uses: actions/checkout@v2
22+
23+
- name: Set Node.js Version
24+
uses: actions/setup-node@v2
25+
with:
26+
node-version: 16
27+
28+
- name: Install Dependencies
29+
run: npm ci
30+
31+
- name: Build
32+
run: npm run build

scss/_adminForm.scss all.less

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/*
2-
* Copyright (c) 2013-2015 Mark C. Prins <[email protected]>
1+
/*!
2+
* Copyright (c) 2022 Mark C. Prins <[email protected]>
33
*
44
* Permission to use, copy, modify, and distribute this software for any
55
* purpose with or without fee is hereby granted, provided that the above
@@ -13,7 +13,5 @@
1313
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1414
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1515
*/
16-
17-
#olmap_purgeform p {
18-
text-align: left;
19-
}
16+
@import "ol6/ol.css";
17+
@import "ol6/ol-layerswitcher.css";

deleted.files

+38
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,41 @@ style.css.map
66
logo/mq_logo.png
77
CHANGES
88
README
9+
javascript/OpenLayersMap.js
10+
javascript/OpenLayersMap/Control/Fullscreen.js
11+
javascript/OpenLayersMap/Control/KeyboardClick.js
12+
javascript/OpenLayersMap/Control/LayerSwitcher.js
13+
javascript/OpenLayersMap/Control/OverviewMap.js
14+
javascript/OpenLayersMap/Control/Zoom.js
15+
javascript/OpenLayersMap/Handler/KeyboardPoint.js
16+
javascript/OpenLayersMap/Layer/MapQuest.js
17+
javascript/OpenLayersMap/Layer/OCM.js
18+
javascript/OpenLayersMap/Layer/Stamen.js
19+
javascript/OpenLayersMap/Popup/FramedCloud.js
20+
javascript/de.js
21+
javascript/en.js
22+
javascript/es.js
23+
javascript/fr.js
24+
javascript/nl.js
25+
lib/OpenLayers.js
26+
lib/img/cloud-popup-relative.png
27+
lib/img/overview_replacement.gif
28+
scss/_Common.scss
29+
scss/_Fullscreen.scss
30+
scss/_LayerSwitcher.scss
31+
scss/_OverviewMap.scss
32+
scss/_Popup.scss
33+
scss/_ScaleLine.scss
34+
scss/_StatusBar.scss
35+
scss/_Zoom.scss
36+
scss/_adminForm.scss
37+
scss/_help.scss
38+
scss/_tooltip.scss
39+
scss/print.scss
40+
scss/style.scss
41+
lib/img/blank.gif
42+
lib/img/close.gif
43+
lib/img/info.png
44+
lib/img/olMapbg.png
45+
print.css
46+
style.css

javascript/OpenLayersMap.js

-40
This file was deleted.

javascript/OpenLayersMap/Control/Fullscreen.js

-168
This file was deleted.

0 commit comments

Comments
 (0)