Sha256: 7d3a60acb4c367b5a8dceab558c0fcafe03605c2f9a315b40a21d587567270c9

Contents?: true

Size: 1.48 KB

Versions: 7

Compression:

Stored size: 1.48 KB

Contents

# How to upgrade from 0.1 to 0.2

There are a number of changes to the plugin in 0.2 that may break peoples implementations of Leaflet.draw 0.1. If you  I will try my best to list any changes here.

## Event consolidation

Leaflet.draw 0.1 had a created event for each different shape that was created. 0.2 now consolitates these into a single created shape.

The vector or marker is accessed by the `layer` property of the event arguments, the type of layer by the `layerType`.

#### New way

````js
map.on('draw:created', function (e) {
	var type = e.layerType,
		layer = e.layer;

	if (type === 'marker') {
		// Do any marker specific logic here
	}

	map.addLayer(layer);
});
````

#### Old way

````js
map.on('draw:poly-created', function (e) {
	map.addLayer(e.poly);
});
map.on('draw:rectangle-created', function (e) {
	map.addLayer(e.rect);
});
map.on('draw:circle-created', function (e) {
	map.addLayer(e.circ);
});
map.on('draw:marker-created', function (e) {
	e.marker.bindPopup('A popup!');
	map.addLayer(e.marker);
});
````

## Draw handler started/stopped event change

Renamed the drawing started and stopped events to be the same as the created standard.

`drawing` -> `draw:drawstart` and `drawing-disabled` -> `draw:drawstop`.

The event argument has also changed from `drawingType` -> `layerType`.

## CSS changes

There has been a whole bunch of CSS changes, if you have customized any of these plese see [leaflet.draw.css](https://github.com/Leaflet/Leaflet.draw/blob/master/dist/leaflet.draw.css).

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
leaflet-js-0.8.dev2 lib/leaflet.draw/BREAKINGCHANGES.md
leaflet-js-0.7.0.4 lib/leaflet.draw/BREAKINGCHANGES.md
leaflet-js-0.7.0.3 lib/leaflet.draw/BREAKINGCHANGES.md
leaflet-js-0.7.0.2 lib/leaflet.draw/BREAKINGCHANGES.md
leaflet-js-0.7.0.1 lib/leaflet.draw/BREAKINGCHANGES.md
leaflet-js-0.7.0 lib/leaflet.draw/BREAKINGCHANGES.md
leaflet-js-0.6.beta4 lib/leaflet.draw/BREAKINGCHANGES.md