背景
scroll: ture
にしていてiOS9では動作するにもかかわらず、iOS10のwebブラウザでgoogle mapがスクロール出来ないことがあります。
対応方法
google mapを読み込むurlのsigned_in=true
をsigned_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>