[1.7.x] Complemented 1.6 release notes for 457c16d0d6
And accessorily added missing bits fixing #23293.
This commit is contained in:
parent
b5784048e0
commit
2cbafd814f
|
@ -359,13 +359,13 @@ MapWidget.prototype.getControls = function(layer) {
|
|||
this.controls = [new OpenLayers.Control.Navigation()];
|
||||
if (!this.options.modifiable && layer.features.length)
|
||||
return;
|
||||
if (this.options.geom_name.indexOf('LineString') >= 0 || this.options.geom_name == 'Unknown') {
|
||||
if (this.options.geom_name.indexOf('LineString') >= 0 || this.options.geom_name == 'GeometryCollection' || this.options.geom_name == 'Unknown') {
|
||||
this.controls.push(new OpenLayers.Control.DrawFeature(layer, OpenLayers.Handler.Path, {'displayClass': 'olControlDrawFeaturePath'}));
|
||||
}
|
||||
if (this.options.geom_name.indexOf('Polygon') >= 0 || this.options.geom_name == 'Unknown') {
|
||||
if (this.options.geom_name.indexOf('Polygon') >= 0 || this.options.geom_name == 'GeometryCollection' || this.options.geom_name == 'Unknown') {
|
||||
this.controls.push(new OpenLayers.Control.DrawFeature(layer, OpenLayers.Handler.Polygon, {'displayClass': 'olControlDrawFeaturePolygon'}));
|
||||
}
|
||||
if (this.options.geom_name.indexOf('Point') >= 0 || this.options.geom_name == 'Unknown') {
|
||||
if (this.options.geom_name.indexOf('Point') >= 0 || this.options.geom_name == 'GeometryCollection' || this.options.geom_name == 'Unknown') {
|
||||
this.controls.push(new OpenLayers.Control.DrawFeature(layer, OpenLayers.Handler.Point, {'displayClass': 'olControlDrawFeaturePoint'}));
|
||||
}
|
||||
if (this.options.modifiable) {
|
||||
|
|
|
@ -36,3 +36,7 @@ Bugfixes
|
|||
|
||||
* Prevented ``UnicodeDecodeError`` in ``runserver`` with non-UTF-8 and
|
||||
non-English locale (`#23265 <https://code.djangoproject.com/ticket/23265>`_).
|
||||
|
||||
* Fixed JavaScript errors while editing multi-geometry objects in the OpenLayers
|
||||
widget (`#23137 <https://code.djangoproject.com/ticket/23137>`_,
|
||||
`#23293 <https://code.djangoproject.com/ticket/23293>`_).
|
||||
|
|
Loading…
Reference in New Issue