0

私は Ionic angular と Mapbox を使用しています。mapbox テーマをロードするために適用されるテーマも知りたいです...

このようなもの:

const currentIonicTheme = ionic.theme.apllied; // here is where I want to know how to get the current theme in the app
const map = new mapboxgl.Map({
  style: `mapbox://styles/mapbox/${currentIonicTheme}-v10`,
  center: [this.lng, this.lat],
  zoom: 15.5,
  pitch: 45,
  bearing: -17.6,
  container: 'map',
  antialias: true
});

アプリのテーマに応じて /mapbox/light-v10 または /mabox/dark-v10 を呼び出す方法はありますか?

4

1 に答える 1