0

我在事件中使用 google-map-marker(在 dom-repeat 中):on-google-map-marker-dragend。

我试图在拖动完成后获取标记的当前位置,但我只得到标记的位置,它在当前拖动之前在拖动上移动。

<google-map zoom="15" id="map" style="height: 20em" api-key="[[apiKey]]" fit-to-markers>
            <template is="dom-repeat" items="[[markers]]" as="mapMarker">
                <google-map-marker on-google-map-marker-click="inform" on-google-map-marker-dragend="inform" click-events="true" draggable="true" drag-events="true" latitude="{{mapMarker.latitude}}" longitude="{{mapMarker.longitude}}">
                </google-map-marker>
            </template>
        </google-map>

方法:

    inform: function(event){
           // this is not the current position after drag end...
           console.log(event.model.mapMarker.latitude);
           console.log(event.target.latitude);

           this.$.userInformationLatitude.innerHTML = event.model.mapMarker.latitude;
           this.$.userInformationLongitude.innerHTML = event.model.mapMarker.longitude;
        }

更好理解的示例: 我将标记从 latitude:0 longitude:0 拖动到纽约,拖动完成后,我得到的值是 latitude:0 longitude:0,而不是纽约的经度和纬度。

4

2 回答 2

0

我们使用 event.detail.latLng.lat() 解决了它;和 event.detail.latLng.lng(); 而不是 event.model...

inform: function(event){
      this.$.userInformationLatitude.innerHTML = event.detail.latLng.lat();
      this.$.userInformationLongitude.innerHTML = event.detail.latLng.lng(); 
}
于 2017-03-23T11:58:36.200 回答
0

I'm using observers to catch/read the change of marker position.

Here is the example Plunk, element my-marker_drag_catch:

   //called on property this.marker_latitude change.          
    marker_latitudeChanged: function() {
      console.log('marker_latitudeChanged');
      if (this.marker_latitude) {
            this.save_marker_data();
      }
    },

    //called on property this.marker_latitude change.          
    marker_longitudeChanged: function() {
      console.log('marker_longitudeChanged');
      if (this.marker_longitude) {
            this.save_marker_data();
      }
    },
于 2017-03-23T10:36:10.747 回答