将 eventListener 添加到 Polymer 中的 google-map 元素的正确位置在哪里?

Where is the correct place to add an eventListener to a google-map element in Polymer?

我定义了以下元素:

<dom-module id="my-element">

  <style>
    :host {
      display: block;
    }
    google-map {
      height: 600px;
    }
  </style>

  <template>
    <geo-location highAccuracy watchpos latitude="{{lat}}" longitude="{{lng}}"></geo-location>
    <google-map id="myMap" latitude="{{lat}}" longitude="{{lng}}" dragEvents="true" zoom="16"></google-map>
    <br>
    <small>Latitude: <b>{{lat}}</b></small><br>
    <small>Longitude: <b>{{lng}}</b></small><br>
  </template>

  <script>
    (function() {
      Polymer({
        is: 'my-element',
        ready: function() {
          this.$.myMap.addEventListener('google-map-dragend', function(e) {
            alert('Map has moved.');
          });
        }
      });
    })();
  </script>

</dom-module>

但是,事件侦听器根本不起作用。我试过在不同的地方调用它,但没有成功。我想让事件侦听器在用户每次拖动地图时调用一个函数。

我在 Eric Bidelman's excellent geo-locate component. Here is the Documentation for google-map component 中使用 Polymer 1.0。

事实证明,事件侦听器位于正确的位置,因为 ready 属性仅在页面上的所有组件都完成加载时触发。

我犯的错误实际上是一个约定问题,因为 Polymer 文档中的属性通过使用“-”分隔单词来转换为代码。我记得在文档的某个地方读到属性应该在 HTML:

中用破折号分隔

dragEvents="true" 应该是 drag-events="true"

现在可以正常使用了。