1.0.5 • Published 7 years ago

mapbox-gl-toggle-control v1.0.5

Weekly downloads
10
License
MIT
Repository
github
Last release
7 years ago

mapbox-gl-toggle-control

npm version

Add a toggle control to your Mapbox GL Map that has the look and feel of other Mapbox GL controls. When clicked, the given HTMLElement will appear or disappear.

npm install mapbox-gl-toggle-control

example.gif

Example

var mapbox = require('mapbox-gl')
var ToggleControl = require('mapbox-gl-toggle-control')

var map = new mapboxgl.Map({
  container: 'map', // container id
  zoom: 5.5, // starting zoom
  maxBounds: [-87, -9, -70, 6]
})

var toggle = new ToggleControl(document.querySelector('#my-legend'))
map.addControl(toggle, 'top-left')
<style>
  .mapboxgl-ctrl-toggle {
    background-image: url(/icons/my-toggle-button.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
  }
</style>
<div id="map"></div>
<div id="my-legend">
  <ul>
    <li><img src="/icons/fairy.png"> Fairy</li>
    <li><img src="/icons/centaur.png"> Centaur</li>
  </ul>
</div>

This will create a control button on the map. The contents of the button can be changed via the CSS class mapboxgl-ctrl-toggle.

API

var ctrl = ToggleControl(el: HTMLElement, [contents])

Create the toggle control. The control can be added to the map using map.addControl(ctrl, 'top-left').

  • el: (required) HTMLElement. When the control is clicked or toggle is called, the element will be shown or hidden.
  • contents: (optional) The innerHTML contents of the button.

ctrl.hide()

Hide the element.

ctrl.show()

Show the element.

ctrl.toggle()

Toggle showing or hiding the element.

ctrl.isOpen()

Returns true if the element is visible.

License

MIT

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago