--- layout: api title: "v2.0.0 JavaScript Library: L.mapbox.infoControl(options)" categories: api version: v2.0.0 permalink: /api/v2.0.0/l-mapbox-infocontrol/ ---
Extends: L.Control
A map control that shows a toggleable info container. If set, attribution is auto-detected from active layers and added to the info container.
Options | Value | Description |
---|---|---|
options optional | object | An options object. Beyond the default options for map controls, this object has a one additional parameter:
|
Example:
var map = L.mapbox.map('map').setView([38, -77], 5);
map.addControl(L.mapbox.infoControl().addInfo('foo'));
Returns: a L.mapbox.infoControl
object.
Class: L.mapbox.InfoControl
Adds an info string to infoControl.
Options | Value | Description |
---|---|---|
info required | string | A string which may contain HTML. It will be sanitized by the infoControl's sanitizer option. |
Removes an info string from infoControl.
Options | Value | Description |
---|---|---|
info required | string | Info to remove. |