Map engine to serve all the people ;)
To run goodmap instance you'll need to install those dependencies:
- python 3.10
- poetry 1.20
We use poetry
to serve project dependencies. To install all needed python dependencies:
- go to project directory
- use
poetry install
If you don't want to go through all the configuration, e.g. you just simply want to test if everything works,
you can simply run app with test dataset provided in tests/e2e_tests
directory:
poetry run flask --app 'goodmap.goodmap:create_app(config_path="./tests/e2e_tests/e2e_test_config.yml")' run
If you want to serve app with your configuration rename config-template.yml to config.yml and change its contents according to your needs. Values descriptions you can find inside config-template.yml.
Afterwards run it with:
poetry run flask --app 'goodmap.goodmap' --debug run
Database consists of three sections:
categories
- which informs on what categories data of points is dividedvisible_data
- list of categories which will be visible by application usersdata
- actual data split intocategories
Fully configurable map where key is name of category and value is list of allowed types. E.g.
- "car_elements": ["mirror", "wheel", "steering wheel"]
- "color": ["red", "blue", "green"]
Data consists of two parts:
- obligatory and constant
name
- name of the objectposition
- coordinates of object
- category dependent - depending on your
categories
setup it varies. See example of config below.
You can define your own, more complex data types as dictionary.
- obligatory fields in dictionary:
type
- type of datavalue
- value of data
- optional fields in dictionary:
displayValue
- value to display instead ofvalue
You can find examples of working configuration and database in tests/e2e_tests
named:
e2e_test_config.yml
e2e_test_data.json
- better looking frontend
- frontend for mobile version
- Simplified and standarized configuration in code
- Extracted project dependencies to other repositoriesq
- Updated dependencies
- Using frontend served in npm
- JSON and Google hosted JSON database
- Map displays points from database