Android Google Map | Two finger scrolling

后端 未结 2 2003
粉色の甜心
粉色の甜心 2020-12-15 01:35

I am working with Google Map,

My case is that I have a map fragment inside the ScrollView and I need to scroll the map only with two finger<

2条回答
  •  抹茶落季
    2020-12-15 01:57

    var map = new google.maps.Map(document.getElementById('map'), {
              zoom: 4,
              center: myLatLng,
              gestureHandling: 'cooperative'
            });
    

    For more details check this https://maps-apis.googleblog.com/2016/11/smart-scrolling-comes-to-mobile-web-maps.html

提交回复
热议问题