ここであまり混乱しないことを願っています。Backbone.js アプリケーションがあり、Openlayers を一緒に使用しています。
私はVectorViewを持っています。そして、そのビュー内に openlayers featuresAdded イベントがあります。そのイベント内で、ビュー (geoquery) で別の関数を呼び出そうとしています。以下のコードは機能しません。何か案は?
//event setup
this.layer.events.on({
"beforefeaturesadded": this.beforeFeaturesAdded,
"featuresadded": this.featuresAdded
});
featuresAdded: function(event){
this.geoquery(polystring);
},
geoquery: function(polystring){
}