I want to disable clamp control in order to zoom in on my application. How do I set this up?
mapView = (MapView) findViewById(R.id.mapview); mapView.setBuiltInZoomControls(false);
Disable all gestures:
mapView.getMap().getUiSettings().setAllGesturesEnabled(false);
Disabling just Zoom:
mapView.getMap().getUiSettings().setZoomControlsEnabled(false);
Source: https://habr.com/ru/post/1789980/More articles:Recursive Method IQueryable Linq Extensions - c #Android, want to link bitmaps in an array using strings, programmatically - androidAdditional tools / scripts / plugins for editing html with vim - htmlPutting datatable values separated by commas in a string - c #MVC - passing additional information to a view - c #Passing a parameter to a saxon style sheet - parametersEF Codefirst How to create a separate table for a derived class? - c #Animate Path Fill - Silverlight - animationYoutube Player Cannot Be Covered With Any HTML Element - iphoneHow to avoid PHP exec () using WSGI to execute a Python script? - pythonAll Articles