Skip to content

Instantly share code, notes, and snippets.

@christianhent
Last active December 16, 2017 05:43
Show Gist options
  • Save christianhent/c5ad2ce8b7e73bf86e35a4fd170dbc98 to your computer and use it in GitHub Desktop.
Save christianhent/c5ad2ce8b7e73bf86e35a4fd170dbc98 to your computer and use it in GitHub Desktop.
disables the standard zoom control
<script>
// ... existing map code
// ...
// set {zoomControl: false} to disable the default zoom control
var map = new L.Map('map',{
fullscreenControl: true,
zoomControl: false,
fullscreenControlOptions: {
position: 'topleft'
},
layers: [tile]
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment