mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-28 17:11:17 +01:00
Add support for circle layer #30
This commit is contained in:
parent
5eb0e36faf
commit
d567a4f98b
3 changed files with 61 additions and 0 deletions
15
src/components/icons/CircleIcon.jsx
Normal file
15
src/components/icons/CircleIcon.jsx
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
import React from 'react'
|
||||||
|
import IconBase from 'react-icon-base'
|
||||||
|
|
||||||
|
|
||||||
|
export default class FillIcon extends React.Component {
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<IconBase viewBox="0 0 20 20" {...this.props}>
|
||||||
|
<path transform="translate(2 2)" d="M7.5,0C11.6422,0,15,3.3578,15,7.5S11.6422,15,7.5,15 S0,11.6422,0,7.5S3.3578,0,7.5,0z M7.5,1.6666c-3.2217,0-5.8333,2.6117-5.8333,5.8334S4.2783,13.3334,7.5,13.3334 s5.8333-2.6117,5.8333-5.8334S10.7217,1.6666,7.5,1.6666z"></path>
|
||||||
|
</IconBase>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ import LineIcon from './LineIcon.jsx'
|
||||||
import FillIcon from './FillIcon.jsx'
|
import FillIcon from './FillIcon.jsx'
|
||||||
import SymbolIcon from './SymbolIcon.jsx'
|
import SymbolIcon from './SymbolIcon.jsx'
|
||||||
import BackgroundIcon from './BackgroundIcon.jsx'
|
import BackgroundIcon from './BackgroundIcon.jsx'
|
||||||
|
import CircleIcon from './CircleIcon.jsx'
|
||||||
|
|
||||||
class LayerIcon extends React.Component {
|
class LayerIcon extends React.Component {
|
||||||
static propTypes = {
|
static propTypes = {
|
||||||
|
@ -19,6 +20,7 @@ class LayerIcon extends React.Component {
|
||||||
case 'background': return <BackgroundIcon {...iconProps} />
|
case 'background': return <BackgroundIcon {...iconProps} />
|
||||||
case 'line': return <LineIcon {...iconProps} />
|
case 'line': return <LineIcon {...iconProps} />
|
||||||
case 'symbol': return <SymbolIcon {...iconProps} />
|
case 'symbol': return <SymbolIcon {...iconProps} />
|
||||||
|
case 'circle': return <CircleIcon {...iconProps} />
|
||||||
default: return null
|
default: return null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -124,6 +124,50 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"circle": {
|
||||||
|
"groups": [
|
||||||
|
{
|
||||||
|
"title": "Settings",
|
||||||
|
"type": "settings"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Source",
|
||||||
|
"type": "source"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Basic",
|
||||||
|
"type": "properties",
|
||||||
|
"fields": [
|
||||||
|
"circle-color",
|
||||||
|
"circle-opacity",
|
||||||
|
"circle-stroke-color",
|
||||||
|
"circle-stroke-opacity",
|
||||||
|
"circle-blur"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Scale",
|
||||||
|
"type": "properties",
|
||||||
|
"fields": [
|
||||||
|
"circle-radius",
|
||||||
|
"circle-stroke-width",
|
||||||
|
"circle-pitch-scale"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Position",
|
||||||
|
"type": "properties",
|
||||||
|
"fields": [
|
||||||
|
"circle-translate",
|
||||||
|
"circle-translate-anchor"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "JSON",
|
||||||
|
"type": "jsoneditor"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"symbol": {
|
"symbol": {
|
||||||
"groups": [
|
"groups": [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue