enable programmatically calling the clickFeature metod of the select feature control, r=crschmidt (closes #1449)
git-svn-id: http://svn.openlayers.org/trunk/openlayers@8944 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -260,7 +260,8 @@ OpenLayers.Control.SelectFeature = OpenLayers.Class(OpenLayers.Control, {
|
||||
* {Boolean} Allow for multiple selected features.
|
||||
*/
|
||||
multipleSelect: function() {
|
||||
return this.multiple || this.handlers.feature.evt[this.multipleKey];
|
||||
return this.multiple || (this.handlers.feature.evt &&
|
||||
this.handlers.feature.evt[this.multipleKey]);
|
||||
},
|
||||
|
||||
/**
|
||||
@@ -272,7 +273,8 @@ OpenLayers.Control.SelectFeature = OpenLayers.Class(OpenLayers.Control, {
|
||||
* {Boolean} Toggle the selected state of a feature.
|
||||
*/
|
||||
toggleSelect: function() {
|
||||
return this.toggle || this.handlers.feature.evt[this.toggleKey];
|
||||
return this.toggle || (this.handlers.feature.evt &&
|
||||
this.handlers.feature.evt[this.toggleKey]);
|
||||
},
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user