是否可以将参数传递给cartodb中的html模板

时间:2014-08-18 14:00:44

标签: javascript jquery html

我想将使用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模板。有可能吗?

0 个答案:

没有答案