gmaps4rails回调不点火(gmaps4rails callback not firing)

2019-09-27 16:59发布

    = gmaps(markers: { data: @json, options: @marker_options }, map_options: @map_options )

    - content_for :map_scripts do
      :javascript
        Gmaps.map.callback = function() {
          alert('asdf') // <-- I never see this alert
        }

使用gmaps4rails宝石(V1.5.2),我在视图置于上面的代码。 我的地图显示正常与我的标记。 但随着我的JavaScript,我不应该得到一个警报(我不)? 我不知道如果我完全理解回调。

仅供参考,JavaScript的出现在我的源罚款。

Answer 1:

它应该是content_for :scripts作为DOC提到

另外根据您的浏览器,你最好有: alert('asdf'); 而不是alert('asdf')



文章来源: gmaps4rails callback not firing