Remove projection code for now.

This commit is contained in:
orangemug
2019-05-29 18:54:32 +01:00
parent 884dc6fa49
commit cb6c6e0d9f
4 changed files with 3 additions and 47 deletions

View File

@@ -110,20 +110,6 @@ class SettingsModal extends React.Component {
/>
</InputBlock>
{this.props.openlayersDebugOptions.enableProjections &&
<InputBlock label={"Projection (experimental)"} doc={"Projection of the data"}>
<SelectInput {...inputProps}
data-wd-key="modal-settings.maputnik:projection"
options={[
['EPSG:3857', '[EPSG:3857] Web Mercator'],
['EPSG:3031', '[EPSG:3031] Antarctic Polar Stereographic (experimental)'],
]}
value={metadata['maputnik:projection'] || 'EPSG:3857'}
onChange={this.changeMetadataProperty.bind(this, 'maputnik:projection')}
/>
</InputBlock>
}
</div>
</Modal>
}