mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-01-17 16:00:29 +01:00
27 lines
676 B
JavaScript
27 lines
676 B
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
|
|
import {latest} from '@mapbox/mapbox-gl-style-spec'
|
|
import InputBlock from '../inputs/InputBlock'
|
|
import StringInput from '../inputs/StringInput'
|
|
|
|
class LayerIdBlock extends React.Component {
|
|
static propTypes = {
|
|
value: PropTypes.string.isRequired,
|
|
wdKey: PropTypes.string.isRequired,
|
|
onChange: PropTypes.func.isRequired,
|
|
}
|
|
|
|
render() {
|
|
return <InputBlock label={"ID"} fieldSpec={latest.layer.id}
|
|
data-wd-key={this.props.wdKey}
|
|
>
|
|
<StringInput
|
|
value={this.props.value}
|
|
onChange={this.props.onChange}
|
|
/>
|
|
</InputBlock>
|
|
}
|
|
}
|
|
|
|
export default LayerIdBlock
|