Я думал, что реагирующие компоненты зависят от состояния для изменения / рендеринга вида, но почему вызов функции setStyle из mapbox-gl меняет стиль карты без изменения состояния?
class WebMap extends React.Component {
state = {
style:"mapbox://styles/noeltech/cj6jcxggi5jpr2smhnsb42h3i",
lng:122.5683,
lat:10.7028,
zoom:14
};
componentDidMount(){
const {lng, lat,zoom,style } = this.state;
const map = new mapboxgl.Map({
container: this.mapContainer,
style: style,
center: [lng, lat],
zoom
});
map.on('move', () => {
const {lng, lat } =map.getCenter();
this.setState({
lng: lng.toFixed(4),
lat: lat.toFixed(4),
zoom: map.getZoom().toFixed(2)
});
console.log(`lng: ${lng} lat:${lat}`)
});
setTimeout(()=>{
// this.setState({style:"mapbox://styles/noeltech/cj6zr2fda9jyz2smst427o4gb"})
map.setStyle("mapbox://styles/noeltech/cj6zr2fda9jyz2smst427o4gb")
console.log(this.state.style)
},5000);