Skip to content

Olymo/LeafletPolylineDirection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 

Repository files navigation

@whatsaaaaa/leafletpolylinedirection

Leaflet plug-in to add direction arrows on existing Polylines.

Install

$ npm i @whatsaaaaa/leafletpolylinedirection

Usage

import { createDirectionIndicators } from "@whatsaaaaa/leafletpolylinedirection";

createDirectionIndicators(coordinates, mapObject, {
  numberOfIndicators: 1,
  color: "red",
});

Parameters

  • coordinates: Array
  • mapObject: Object
  • options: Object

Options

  • numberOfIndicators - Default value 1. If you want more than one indicator between two coordinates, use this property
  • color - Default 'blue'. Change the color of indicator

Recommended CSS

.direction-indicator {
  width: 8px;
  height: 8px;
}

.direction-indicator > div {
  margin-left: -1px;
  margin-top: -3px;
  transform-origin: center center;
  font: 12px/1.5 'Helvetica Neue', Arial, Helvetica, sans-serif;
}