Giter Site home page Giter Site logo

react-leaflet-curve's Introduction

react-leaflet-curve

Bezier Curve - a React component build on top of React-Leaflet that integrate leaflet-curve feature.

Curve example

Getting started

import React from 'react';
import { Map, Circle, TileLayer, LayersControl, FeatureGroup, Marker, Polyline } from 'react-leaflet'
import { Curve } from 'react-leaflet-curve'

const path = ['M', [50.14874640066278, 14.106445312500002],
  'Q', [51.67255514839676, 16.303710937500004],
  [50.14874640066278, 18.676757812500004],
  'T', [49.866316729538674, 25.0927734375]]

<Curve positions={path} option={{color:'red',fill:true}}/>

For more details on how to use this plugin check the example.

API

Command Parameters Description
M [lat,lng]+ move to [lat,lng]
L [lat,lng]+ line to [lat,lng]
H [lng]+ horizontal line to [lng]
V [lat]+ vertical line to [lat]
C ([lat1,lng1],[lat2,lng2],[lat,lng])+ cubic Bézier curve to [lat,lng] with control points at [lat1,lng1] and [lat2,lng2]
S ([lat2,lng2],[lat,lng])+ cubic bézier curve to [lat,lng] with control points at reflection of second control point of previous curve [lat1,lng1] and [lat2,lng2]
Q ([lat1,lng1],[lat,lng])+ quadratic Bézier curve to [lat,lng] with control point at [lat1,lng1]
T ([lat,lng])+ quadratic Bézier curve to [lat,lng] with control point at reflection of control point of previous curve [lat1,lng1]
Z close path (line to M)

Note that only absolute commands (uppercase) are implemented. It's possible to approximate elliptical arcs (command 'A') with Bézier curves (the elliptical-arc branch implements this command if you're interested).

For more details on how to use this plugin check the example.

react-leaflet-curve's People

Contributors

cmilfont avatar epozsh avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.