Skip to content

🍃 Leaflet plugin that implements double-tap-and-drag zoom feature for zooming in / out with one finger on touchscreen! 🎉

Notifications You must be signed in to change notification settings

micbis/Leaflet.DoubleTapDragZoom

 
 

Repository files navigation

Leaflet.DoubleTapDragZoom

This plugin implements double-tap-and-drag zoom feature, which allows to zoom in / out with one hand! 🎉

Inspired by Google Maps and Apple Maps.

Installation

NPM

npm install --save leaflet-doubletapdrag leaflet-doubletapdragzoom

import L from 'leaflet';
import 'leaflet-doubletapdrag';
import 'leaflet-doubletapdragzoom';

Loading from unpkg.com:

Add the following scripts to the head:

<script src="https://unpkg.com/leaflet"></script>
<script src="https://unpkg.com/leaflet-doubletapdrag"></script>
<script src="https://unpkg.com/leaflet-doubletapdragzoom"></script>

Usage

Now you can pass supported options to map. See Options section for more details.

var map = L.map('map', {
  doubleTapDragZoom: true,
  doubleTapDragZoomOptions: {
    reverse: false,
  },
})

To achieve Google Maps-like behavior, use this configuration:

var map = L.map('map', {
  doubleTapDragZoom: 'center',
  doubleTapDragZoomOptions: {
    reverse: true,
  },
})

Options

Option Type Default Description
doubleTapDragZoom Boolean|String * Whether the map can be zoomed by double-tap-and-drag gesture. If passed 'center', it will zoom to the center of the view regardless of where the touch event (finger) was. Enabled for touch-capable web browsers except for old Androids
doubleTapDragZoomOptions Object -- Plugin options, see available options below
doubleTapDragZoomOptions.reverse Boolean false If true, zoom drag direction will be reversed - dragging up will zoom out, dragging down will zoom in

About

🍃 Leaflet plugin that implements double-tap-and-drag zoom feature for zooming in / out with one finger on touchscreen! 🎉

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%