Disable moving around in mapview

前端 未结 9 781
执念已碎
执念已碎 2020-12-16 11:06

Is it possible to disable moving inside the google map?

相关标签:
9条回答
  • 2020-12-16 11:58

    Not sure if i have miss understood but what solved this issue for me was as follows :)

    map.HasZoomEnabled = false; map.HasScrollEnabled = false;

    0 讨论(0)
  • 2020-12-16 12:00

    If you embed the map view in your app, I think you can use static maps to view the same.

    0 讨论(0)
  • 2020-12-16 12:01
    mMap.getUiSettings().setScrollGesturesEnabled(false);
    

    this can disable moving in map

    0 讨论(0)
提交回复
热议问题