背景
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>