1.2.0 • Published 21 days ago

@mapbox-controls/styles v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
21 days ago

<< all controls

💅 @mapbox-controls/styles

npm.io

Control to change map style among provided.

npm i @mapbox-controls/styles
import StylesControl from '@mapbox-controls/styles';
import '@mapbox-controls/styles/src/index.css';

map.addControl(new StylesControl(styles: {
  label: 'Streets',
  styleName: 'Mapbox Streets',
  styleUrl: 'mapbox://styles/mapbox/streets-v12',
}, {
  label: 'Satellite',
  styleName: 'Mapbox Satellite Streets',
  styleUrl: 'mapbox://sprites/mapbox/satellite-streets-v12',
}), 'top-left');

// or with compact view and default styles (streets and satellite)
map.addControl(new StylesControl({ compact: true }), 'top-left');

Use mapbox style.load event to redraw layers.

Options

styleName - is the root value of style's name property according to the specification.

export type Style = {
  label: string;
  styleName: string;
  styleUrl: string;
};

export type StylesControlOptions = {
  styles?: Style[] | undefined;
  onChange?: ((style: Style) => void) | undefined;
  compact?: boolean | undefined;
};
1.2.0

21 days ago

1.1.0

5 months ago

1.0.1

7 months ago

1.0.0

7 months ago