mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-31 00:20:32 +01:00
Moved "Style Renderer" options to bottom of list.
This commit is contained in:
parent
e7622c2080
commit
392a845460
1 changed files with 13 additions and 12 deletions
|
@ -107,18 +107,6 @@ class SettingsModal extends React.Component {
|
||||||
/>
|
/>
|
||||||
</InputBlock>
|
</InputBlock>
|
||||||
|
|
||||||
<InputBlock label={"Style Renderer"} doc={"Choose the default Maputnik renderer for this style."}>
|
|
||||||
<SelectInput {...inputProps}
|
|
||||||
data-wd-key="modal-settings.maputnik:renderer"
|
|
||||||
options={[
|
|
||||||
['mbgljs', 'MapboxGL JS'],
|
|
||||||
['ol', 'Open Layers (experimental)'],
|
|
||||||
]}
|
|
||||||
value={metadata['maputnik:renderer'] || 'mbgljs'}
|
|
||||||
onChange={onChangeMetadataProperty.bind(this, 'maputnik:renderer')}
|
|
||||||
/>
|
|
||||||
</InputBlock>
|
|
||||||
|
|
||||||
<InputBlock label={"Center"} doc={latest.$root.center.doc}>
|
<InputBlock label={"Center"} doc={latest.$root.center.doc}>
|
||||||
<ArrayInput
|
<ArrayInput
|
||||||
length={2}
|
length={2}
|
||||||
|
@ -194,6 +182,19 @@ class SettingsModal extends React.Component {
|
||||||
/>
|
/>
|
||||||
</InputBlock>
|
</InputBlock>
|
||||||
|
|
||||||
|
<InputBlock label={"Style Renderer"} doc={"Choose the default Maputnik renderer for this style."}>
|
||||||
|
<SelectInput {...inputProps}
|
||||||
|
data-wd-key="modal-settings.maputnik:renderer"
|
||||||
|
options={[
|
||||||
|
['mbgljs', 'MapboxGL JS'],
|
||||||
|
['ol', 'Open Layers (experimental)'],
|
||||||
|
]}
|
||||||
|
value={metadata['maputnik:renderer'] || 'mbgljs'}
|
||||||
|
onChange={onChangeMetadataProperty.bind(this, 'maputnik:renderer')}
|
||||||
|
/>
|
||||||
|
</InputBlock>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</Modal>
|
</Modal>
|
||||||
|
|
Loading…
Reference in a new issue