Skip to content

Instantly share code, notes, and snippets.

View kingofnull's full-sized avatar
😪

The Lost Guy kingofnull

😪
View GitHub Profile
@kingofnull
kingofnull / ol-drag-interaction.js
Last active August 15, 2019 15:12
drag interaction for openlayers 4 (ol4)
/**
* @constructor
* @extends {ol.interaction.Pointer}
*/
ol.interaction.Drag = function() {
ol.interaction.Pointer.call(this, {
handleDownEvent: ol.interaction.Drag.prototype.handleDownEvent,
handleDragEvent: ol.interaction.Drag.prototype.handleDragEvent,
handleMoveEvent: ol.interaction.Drag.prototype.handleMoveEvent,