@opengisch/geogirafe-lib
v0.3.59
Published
GeoGirafe is a VanillaJS-based library for creating online 2D and 3D geoportals.
Downloads
11
Readme
GeoGirafe
GeoGirafe is a flexible application to build online geoportals. This repository contains the web-viewer part of the project.
Please note that GeoGirafe is at its very beginning, can strongly evolve and is therefore not intended for the moment to be used by people other than developers or contributors.
The project documentation can be found here: https://doc.geomapfish.dev.
The demo instances of GeoGirafe can be tested here: https://demo.geomapfish.dev.
Goal
The goal of GeoGirafe is to allow the easy implementation of a stable, efficient and secure geoportal. GeoGirafe is also meant to be easily extensible, by allowing users to integrate their own plugins.
As the main users of GeoGirafe do not necessarily have advanced skills in computer development, we wanted to have a learning curve as smooth as possible. This is why the project does not use the latest frameworks and favours readable code over code corresponding to certain arbitrary "quality" criteria. GeoGirafe is therefore based on web standards (Vanilla Web Components) and limits the number of dependencies to other libraries.
Development philosophy
GeoGirafe is developed according to the following principles:
KISS: GeoGirafe is simple. It is developed with pure Vanilla-JavaScript. No complex framework like React or Angular is used. If you know JavaScript, you can understand how it works.
DevSecOps: GeoGirafe is baking security in at every phase of the software lifecycle, in order to deliver a secure-by-design application. Quality, readability, reliability and security are checked by the SonarCloud platform during our continuous integration processes: View SonarCloud Reports
Reactivity: GeoGirafe is meant to be responsive, resilient, elastic and message driven according to the Reactive Manifesto.
Agility: GeoGirafe is being developed according to the Agile methodology. We value individuals collaboration, and change responsiveness more than processes, tools and plans.
Accessibility: GeoGirafe is doing its best to make web content more accessible to individuals with disabilities: View Wave Report.
Architecture
Architectural choices made for the GeoGirafe project, including strategic objectives and technological choices, is explained in details here: https://doc.geomapfish.dev/docs/architecture.
Getting Started
If you want to get started with GeoGirafe, the simplest way is to use the Docker Container : https://hub.docker.com/r/geogirafe/viewer. This will allow you to get a running instance of GeoGirafe with minimum effort. Please follow the small documentation in the Docker Hub Readme.
Work with GeoGirafe
Development
First, install Node-18.
Then, clone the Repository:
git clone https://gitlab.com/geogirafe/gg-viewer.git
Now you can build the application, and start the development server:
npm install
npm run serve
Debugging using VSCode
If you are using VSCode, there is a preconfigured debugging configuration in the .vscode
directory.
After you've started the application in development mode, just press F5
, and VSCode will attach to the running process. You will then be able to debug your code.
Configuration
The complete configuration of the application is done in the file static/config.json
.
This configuration will be loaded dynamically when the application starts.
Therefore it is not necessary to rebuild the project when you modify this file.
The file static/config.json
does not exists by default.
The simplest way to create one is to pick up an existing one in the demo directory, and to adapt the content to your needs.
You can also preconfigure GeoGirafe for an existing demo configuration by using:
On Linux
npm run configure-demo <environment>
On Windows
npm run configure-demo-win <environment>
This will automatically copy the config.yaml
file in the right place, and download the needed Mock objects.
Please note that today, the GeoGirafe Viewer is using a backend based on GeoMapFish. The services you will have to use in your configuration must therefore be compliant with GeoMapFish.
Build for Production
npm install
npm run build
Build NPM Packages
Please note, that the NPM build tools may fail under Windows yet
make sure to have run the command npm login
before at least once
Build NPM Dev Package
npm install
npm run build_lib_pack
publish the package
cd gg_lib
npm login
npm publish --access public
TODO: Does not work yet -> Build NPM App Package
npm install
npm run build_app_pack
publish the package
cd gg_app
npm login
npm publish --access public
TODO: Does not work yet -> Build and publish both NPM Packages
npm run build_all && npm publish_all
Using Docker
docker run -v $PWD:/src node:18-slim bash -c "cd /src && npm install && npm run build"
Deployment
The deployment can be done in 2 ways:
Using an existing WebServer
After the build, everything that needs to be deployed is in the public
directory.
Copy the public
directory content to any webserver, for example in the htdocs
directory.
Using Docker
When the project has been built, you can build a docker image that will contains the application:
docker build -t <your_name>/gg-viewer -f buildtools/Dockerfile .
Then, you can start it:
docker run -p 8080:80 -p 8443:443 <your_name>/gg-viewer
Contributing
Merge-Requests are welcome.
For major changes, please open an issue first to discuss what you would like to change.
Contribution guidelines are available here: CONTRIBUTING.md.
Please read them before contributing.
License
Apache License, Version 2.0