mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 10:37:45 +01:00
Fix replacing of access tokens in MapboxGl.
This commit is contained in:
parent
4269e4573c
commit
27e6675d26
1 changed files with 5 additions and 1 deletions
|
@ -60,6 +60,7 @@ export default class MapboxGlMap extends React.Component {
|
|||
inspectModeEnabled: PropTypes.bool.isRequired,
|
||||
highlightedLayer: PropTypes.object,
|
||||
options: PropTypes.object,
|
||||
replaceAccessTokens: PropTypes.func.isRequired,
|
||||
onChange: PropTypes.func.isRequired,
|
||||
}
|
||||
|
||||
|
@ -90,7 +91,10 @@ export default class MapboxGlMap extends React.Component {
|
|||
|
||||
//Mapbox GL now does diffing natively so we don't need to calculate
|
||||
//the necessary operations ourselves!
|
||||
this.state.map.setStyle(props.mapStyle, {diff: true})
|
||||
this.state.map.setStyle(
|
||||
this.props.replaceAccessTokens(props.mapStyle),
|
||||
{diff: true}
|
||||
)
|
||||
}
|
||||
|
||||
componentDidUpdate(prevProps) {
|
||||
|
|
Loading…
Reference in a new issue