Skip to content
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
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
language: node_js
node_js:
- "stable"
cache:
directories:
- node_modules
script:
- npm test
- npm run test:coverage
- npm run build

deploy:
provider: pages
skip_cleanup: true
github_token: $github_token
local_dir: build
on:
branch: master
26 changes: 26 additions & 0 deletions assignment.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Fixing bugs:

- Coordinate bug.
- Change api link to https

Map:

- Add options to change tile layer
- Add search box for region name
- A click in the map will change the center of the map
- Hovering the clicked position show latlng
- Popup show region name
- A click on marker creates its animation

Sidebar:

- At first time mounting
-- Area chart:
--- Average t/r_1h/snowdepth over past 145 hours for all regions
-- Composed chart:
--- Min, Max, Average t/r_1h/snowdepth over past 7 days for all regions

- Map-sidebar interactivy:
-- Choose region by clicking on marker will change data on two charts and display region's info.
-- Click All regions to back to all regions data.
-- Choose type of data to display (t/r_1h/snowdepth) through select options.
Loading