Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(A2): add new chapitre for alice-landing agreement 2 #28

Open
wants to merge 3 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
node_modules/
.DS_STORE
data/*.png
Empty file modified .husky/commit-msg
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions data/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM osgeo/gdal:latest
FROM osgeo/gdal:alpine-small-3.6.3

COPY ./script.sh /opt/script.sh

ENTRYPOINT [ "/usr/bin/sh", "/opt/script.sh" ]
ENTRYPOINT [ "/bin/sh", "/opt/script.sh" ]
5,372 changes: 2,938 additions & 2,434 deletions frontend/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,4 @@
"git add"
]
}
}
}
14 changes: 7 additions & 7 deletions frontend/src/stores/title.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { defineStore } from 'pinia'
import { ref } from 'vue'
import { defineStore } from "pinia";
import { ref } from "vue";

export const useTitleStore = defineStore('title', () => {
const title = ref<string>()
const subtitle = ref<string>()
return { title, subtitle }
})
export const useTitleStore = defineStore("title", () => {
const title = ref<string>();
const subtitle = ref<string>();
return { title, subtitle };
});
10 changes: 10 additions & 0 deletions frontend/src/utils/leaflet-sld.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,16 @@ export function getPointToLayer(
};
return (_, latlng) => circleMarker(latlng, circleMarkerOptions);
}
// ...

case "cross": {
const circleMarkerOptions: CircleMarkerOptions = {
...pathOptions,
radius: ratio(getNumber("./se:Size", graphicNode)),
...options,
};
return (_, latlng) => circleMarker(latlng, circleMarkerOptions);
}
default:
throw Error(`Unknown wellKnownName ${wellKnownName}`);
}
Expand Down
Loading
Loading