我想将使用featureclick选项获得的某些值传递给自定义的infowindow模板。
sublayer.on('featureClick', function(e, latlng, pos, data, layer) { var hello=data.name; alert("mouse clicked polygon with data: " + hello); }); sublayer.infowindow.set('template', $('#infowindow_template').html());
}).on('error', function() {
console.log("some error occurred");
});
我想将变量'hello'的值传递给info-window模板。有可能吗?