我正在使用 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 吗?