0
0

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 5 years have passed since last update.

Google mapのスクロールがiOS10で出来ない時の対処方法

Posted at

背景

scroll: tureにしていてiOS9では動作するにもかかわらず、iOS10のwebブラウザでgoogle mapがスクロール出来ないことがあります。

対応方法

google mapを読み込むurlのsigned_in=truesigned_in=falseにすると、自分の環境では期待通り動作するようになりました。

before
<script src="https://maps.googleapis.com/maps/api/js?libraries=places&key=[ your key ]&signed_in=true"></script>
after
<script src="https://maps.googleapis.com/maps/api/js?libraries=places&key=[ your key ]&signed_in=false"></script>

参考

http://stackoverflow.com/questions/39540515/google-maps-javascript-api-doesnt-respond-to-touch-events-in-ios-10#_=_

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?