この例を変更しようとしています http://storelocator.googlecode.com/git/examples/panel.html
JavaScript コードはこちら: https://gist.github.com/2725336
私が問題を抱えている側面は、これを変更することです:
MedicareDataSource.prototype.FEATURES_ = new storeLocator.FeatureSet(
new storeLocator.Feature('Wheelchair-YES', 'Wheelchair access'),
new storeLocator.Feature('Audio-YES', 'Audio')
);
関数からFeatureSetを作成するため、たとえば、JSONオブジェクトを解析するこの関数があります
WPmmDataSource.prototype.setFeatures_ = function(json) {
var features = [];
// convert features JSON to js object
var rows = jQuery.parseJSON(json);
// iterate through features collection
jQuery.each(rows, function(i, row){
var feature = new storeLocator.Feature(row.slug + '-YES', row.name)
features.push(feature);
});
return new storeLocator.FeatureSet(features);
};
最初のコードスニペットを次のように変更します
WPmmDataSource.prototype.FEATURES_ = this.setFeatures_(wpmm_features);
エラーを返します:
Uncaught TypeError: Object [object Window] has no method 'setFeatures_'