Giter Club home page Giter Club logo

mapbox-gl-draw-rotate-mode's Introduction

Mapbox GL Draw Rotate Mode

This implements a rotation mode in GL Draw. Module is still in active development. See Mapbox GL Draw Rotate Mode Example.

Installation

npm

npm install mapbox-gl-draw-rotate-mode

import RotateMode from 'mapbox-gl-draw-rotate-mode';

browser

Get the js file from the dist/ folder and include in your project.

<script type="text/javascript" src="mapbox-gl-draw-rotate-mode.js"></script>

Usage

Ensure you are loading draw onto your map as a control before triggering changeMode.

var draw = new MapboxDraw(
  defaultMode: 'RotateMode'
  modes: Object.assign(
    RotateMode: RotateMode
  }, MapboxDraw.modes)
});

map.addControl(draw);

/*
 After load, or on events, activate or deactivate rotation:
*/

draw.changeMode('RotateMode');
draw.changeMode('simple_select');

Events

Mapbox GL Draw Rotate Mode offers you a few events. Redefine these as you need.

RotateMode.rotatestart = function(selectedFeature,originalCenter) {
   console.log('ROTATESTART');
   console.log('feature: ',selectedFeature);
   console.log('center: ',originalCenter);
}

RotateMode.rotating = function(selectedFeature,originalCenter,lastMouseDown) {
   console.log('ROTATING');
   console.log('feature: ',selectedFeature);
   console.log('center: ',originalCenter);
   console.log('lastMouseDown: ',lastMouseDown);
}

RotateMode.rotateend = function(selectedFeature) {
   console.log('ROTATEEND');
   console.log('feature: ',selectedFeature);
}

mapbox-gl-draw-rotate-mode's People

Contributors

tempranova avatar

Watchers

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.