1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

vue2-google-mapsでロングタップイベントを実装

Last updated at Posted at 2020-11-06

ロングタップはmousedownmouseupで検知する

参考 https://maps.multisoup.co.jp/blog/294/

vue2-google-mapsのGmapMapコンポーネントで実現できない

以下はclickは動作するがmousedownは動作しない。

    <GmapMap
        ref="gmap"
        :center="latLng"
        :zoom="16"
        :options="options"
        style="width: 600px; height: 450px"
        @click="place($event)"
        @mousedown="place($event)"
    >

vue2-google-mapsのMapクラスイベント一覧mousedown|mouseupイベントは存在しないため、GmapMapにイベントを設定しても動作しない。

Google Maps APIオブジェクトにバインドする

これで動く。

  data() {
    return {
      start: null,
      long_tap: 0.5 * 1000, // 0.5秒
      selected_latlng: null
    };
  },
  mounted() {
    let that = this;
    this.$refs.gmap.$mapPromise.then(() => {
      // mousedownとmouseupでロングタップを検知
      google.maps.event.addListener(this.$refs.gmap.$mapObject, 'mousedown', function () {
        that.start = moment();
      });
      google.maps.event.addListener(this.$refs.gmap.$mapObject, 'mouseup', function (event) {
        if (moment().diff(that.start) > that.long_tap) {
          // 緯度経度を設定
          that.selected_latlng = event.latLng;
        }
      });
    });
  },

Google Maps APIオブジェクトがロードされたあとにイベントリスナーに追加する必要があるため、
this.$refs.gmap.$mapPromise.thenの中に処理を書かないと動かない。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?