Skip to content

edlb/articles-map

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Articles map

Example screenshot

Getting Started

Requirements

Init project

git clone https://github.com/edlb/articles-map.git
cd articles-map
npm i

Use example

npm start

Watch result http://localhost:7357

Update the files src/index.html and src/main.js as you wish

Build js file

npm run build

Get the file at dist/articles-map.js

Usage

Classic mode

new ArticlesMap({
  ...
});

or HTML mode

new ArticlesMap('<map-container-selector>');

In HTML mode, parameters are set through data attributes

Boolean parameters do not need a value

For example: isMaxWidth: true will be data-is-max-width while x: 10 will be data-x=10

Parameters

Mandatory is only relevant in classic mode

Parameter Type Mandatory Default HTML mode attribute
arrows string yes data-module=amArrows
articles array yes data-module=amArticle
container string yes
east string yes data-module=amEast
map string yes data-module=amMap
north string yes data-module=amNorth
options object no {}
south string yes data-module=amSouth
west string yes data-module=amWest

Article

In classic mode, articles can be either a string (selector) or an object

Parameter Type Mandatory Default HTML mode attribute
isMaxWidth boolean no false data-is-max-width
selector string yes
x string no data-x=<value>
y string no data-y=<value>

Options

In HTML mode, options are attributes on the container element

Parameter Type Mandatory Default HTML mode attribute
autoScrollRange number no 80 data-auto-scroll-range=<value>
speed number no 4 data-speed=<value>
transitionDuration number no 480 data-transition-duration=<value>

Events

You can attach event listeners to the ArticleMap instance close to DOM event listeners.

Example use:

const logEvent = () => console.log('event');
const map = new ArticlesMap('#map-container');

map.addEventListener('move', logEvent);
// You can remove this event listener: map.removeEventListener('move', logEvent);

Available events

Event Description
move Sent when the map moves

About

A js library to create a map of articles

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published