google maps api v3 no smooth dragging

后端 未结 3 597
误落风尘
误落风尘 2021-01-01 00:05

I started implementing my software using maps api v3. Unfortunatelly i found out that v3 API has some serious issues which draws me back from bying a bussiness licence.

3条回答
  •  我在风中等你
    2021-01-01 00:42

    We had issue that we had CSS3 transition added to all elements..

    So remove transition and its worked fine..

    See example:

    #map * {
      -moz-transition: none;
      -webkit-transition: none;
      -o-transition: all 0s ease;
      transition: none;
    }

提交回复
热议问题