How to disable scrolling in OSMdroid

ghost

I use OSMdroid of the version 3.0.10 in my project. And I want to disable scrolling on MapView. I tried:

setFocusable(false)
setEnabled(false)
setClickable(false)

methods of MapView with no results. Is there any way to disable scrolling the map?

Thank in advance.

kurtzmarc

The quickest solution is to subclass MapView and override scrollTo(). Instead of calling super.scrollTo(x,y) with the x and y parameters that were passed in, call it with the scroll values you want the maps permanently locked to.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

How to disable RecyclerView scrolling?

From Java

How to disable scrolling temporarily?

From Dev

How to *disable* natural scrolling?

From Dev

How to disable scrolling of AppBarLayout in CoordinatorLayout?

From Dev

How to disable trackpad horizontal scrolling

From Dev

How to disable scrolling in a QML ScrollView (or TextArea)

From Dev

How do you disable horizontal scrolling on a webpage?

From Dev

How to disable down scrolling in ScrollPane in JavaFX?

From Dev

React Native: How to disable scrolling in ListView?

From Dev

How to disable background content scrolling in position fixed

From Dev

How to disable smooth scrolling in IE11

From Dev

How to disable WebView scrolling in Windows 8.1

From Dev

How to disable inertial scrolling on body for iOS browsers?

From Dev

How to disable and enable the scrolling on android ScrollView?

From Dev

How can I disable horizontal scrolling for an NSScrollView?

From Dev

Nativescript: how to programmatically disable / enable ScrollView scrolling?

From Dev

How to disable :hover when scrolling on mobile?

From Dev

Qml: how to disable scrolling/swipe on ListView?

From Dev

How to disable horizontal scrolling in ScrollBar (JavaFX)?

From Dev

How to disable scrolling of an item in ListView android

From Dev

How to disable horizontal scrolling in Ubuntu 18.04 in terminal?

From Dev

How to disable scrolling ViewPager while keyboard is shown?

From Dev

How to disable smooth scrolling on the WinRT side?

From Dev

How to disable scrolling (other than overflow:hidden)

From Dev

How to disable horizontal scrolling in Ubuntu 18.04 in terminal?

From Dev

How do you disable horizontal scrolling on a webpage?

From Dev

How to disable or fix GTK scrolling indicators?

From Dev

How to properly disable UIPickerView component scrolling?

From Dev

How to disable scrolling in a QML ScrollView (or TextArea)

Related Related

  1. 1

    How to disable RecyclerView scrolling?

  2. 2

    How to disable scrolling temporarily?

  3. 3

    How to *disable* natural scrolling?

  4. 4

    How to disable scrolling of AppBarLayout in CoordinatorLayout?

  5. 5

    How to disable trackpad horizontal scrolling

  6. 6

    How to disable scrolling in a QML ScrollView (or TextArea)

  7. 7

    How do you disable horizontal scrolling on a webpage?

  8. 8

    How to disable down scrolling in ScrollPane in JavaFX?

  9. 9

    React Native: How to disable scrolling in ListView?

  10. 10

    How to disable background content scrolling in position fixed

  11. 11

    How to disable smooth scrolling in IE11

  12. 12

    How to disable WebView scrolling in Windows 8.1

  13. 13

    How to disable inertial scrolling on body for iOS browsers?

  14. 14

    How to disable and enable the scrolling on android ScrollView?

  15. 15

    How can I disable horizontal scrolling for an NSScrollView?

  16. 16

    Nativescript: how to programmatically disable / enable ScrollView scrolling?

  17. 17

    How to disable :hover when scrolling on mobile?

  18. 18

    Qml: how to disable scrolling/swipe on ListView?

  19. 19

    How to disable horizontal scrolling in ScrollBar (JavaFX)?

  20. 20

    How to disable scrolling of an item in ListView android

  21. 21

    How to disable horizontal scrolling in Ubuntu 18.04 in terminal?

  22. 22

    How to disable scrolling ViewPager while keyboard is shown?

  23. 23

    How to disable smooth scrolling on the WinRT side?

  24. 24

    How to disable scrolling (other than overflow:hidden)

  25. 25

    How to disable horizontal scrolling in Ubuntu 18.04 in terminal?

  26. 26

    How do you disable horizontal scrolling on a webpage?

  27. 27

    How to disable or fix GTK scrolling indicators?

  28. 28

    How to properly disable UIPickerView component scrolling?

  29. 29

    How to disable scrolling in a QML ScrollView (or TextArea)

HotTag

Archive