NOI Techpark map web application to search places and see an overview of the NOI Techpark area.
You want to see it in action? Please have a look at our Web Component Store. You can also download it, and see how to integrate it in your web page.
- NOI Maps
Web component script file dist/noi_maps_widget.min.js
:
<map-view language="it" totem="0"></map-view>
Webcomponent main language
Type: string Options: "it", "de", "en"
Optional. Ability to turn off (0) or on (1) the totem functionalities (e.g. for Pepper Robot) with QR Code sharing
Type: Int Options: "0", "1"
Optional. Ability to show (0) or hide (1) the zoom buttons
Type: Int Options: "0", "1" Default: "0"
Optional. Ability add css style like height to fix visualization issues.
Type: text Default: "height: 500px"
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
To build the project, the following prerequisites must be met:
- Node.js https://nodejs.org/
For a ready to use Docker environment with all prerequisites already installed and prepared, you can check out the Docker environment section.
Get a copy of the repository:
git clone https://github.com/noi-techpark/webcomp-maps-noi.git
Change directory:
cd webcomp-maps-noi/
Download all dependencies:
npm install
Build and start the project:
npm run start
The application will be served and can be accessed at http://localhost:8080.
To create the distributable files, execute the following command:
npm run build
The server that hosts the image resources (svg, jpg, ...) must allow cross-origin domain request. You can use an .htaccess file like:
<FilesMatch "\.(svg)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
- dist - compiled and distributable file (npm run build)
- node_modules - installed node modules (npm install)
- work - production (npm start)
For the project a Docker environment is already prepared and ready to use with all necessary prerequisites.
These Docker containers are the same as used by the continuous integration servers.
Install Docker (with Docker Compose) locally on your machine.
First, install all dependencies:
docker-compose run --rm app /bin/bash -c "npm install"
Before start working you have to start the Docker containers:
docker-compose up --build --detach
After finished working you can stop the Docker containers:
docker-compose stop
When the containers are running, you can execute any command inside the
environment. Just replace the dots ...
in the following example with the
command you wish to execute:
docker-compose run --rm app /bin/bash -c "..."
Some examples are:
docker-compose run --rm app /bin/bash -c "npm run test"
These steps illustrate how to change the floorplans and icons svg using Adobe Illustrator.
-
download the desired svg (e.g. https://stage.madeincima.it/noi-maps-svg-test/floors/a2-1.svg )
-
open the svg with Adobe Illustrator
-
in the "Levels" tab you'll find all the clickable rooms named after the
Beacon ID
code found in the Google Sheet wrapped inside a group-
beacon_id:
A2 1.10
illustrator level's name:A2-1-10
(building A2 , floor 1, room 10) -
beacon_id:
A2 1.10.C
illustrator level's name:A2-1-10-C
(building A2 , floor 1, room 10C) -
beacon_id:
A2-1.20
illustrator level's name:A2--1-20
(building A2 , floor -1, room 20) -
beacon_id:
A2-1.20.B
illustrator level's name:A2--1-20-B
(building A2 , floor -1, room 20B)
-
every dot (
.
) and every space (-
)A2 1.10.C
->A2-1-10-C
-
every minus symbol (
-
) [negative floors] must be replaced with a double minus symbol (--
)A2-1.20.B
->A1--1-20-B
-
-
edit the SVG as you like
-
if you've added a clickable room remember to wrap it in a group named after the naming convention accordingly with the beacon_id on the Google Sheet
-
Export the file using
-
File > Export > Export as
-
do NOT rename the file (leave the original file name)
-
- Styling: Inline style
- Font: SVG
- Image: Embed
- Objects IDs: Layer names
- Decimal: 2
- Minify: checked
- Responsive: checked
-
-
upload the SVG
- just edit the desidered SVG and then re-upload it
- if possibile, use squared designs
For support, please contact help@opendatahub.com.
If you'd like to contribute, please follow the following instructions:
-
Fork the repository.
-
Checkout a topic branch from the
development
branch. -
Make sure the tests are passing.
-
Create a pull request against the
development
branch.
A more detailed description can be found here: https://github.com/noi-techpark/documentation/blob/master/contributors.md.
More documentation can be found at https://opendatahub.readthedocs.io/en/latest/index.html.
The project uses this boilerplate: https://github.com/noi-techpark/webcomp-boilerplate.
The code in this project is licensed under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3 license. See the LICENSE.md file for more information.
This project is REUSE compliant, more information about the usage of REUSE in NOI Techpark repositories can be found here.
Since the CI for this project checks for REUSE compliance you might find it useful to use a pre-commit hook checking for REUSE compliance locally. The pre-commit-config file in the repository root is already configured to check for REUSE compliance with help of the pre-commit tool.
Install the tool by running:
pip install pre-commit
Then install the pre-commit hook via the config file by running:
pre-commit install