opengis
Version:
openlayer Map Component for Vue 2.0
22 lines (21 loc) • 445 B
JavaScript
/**
* 地图图层默认的地图符号样式 胡红勋 2017-12-23
*/
const SymbolConfig = {
defaultPoint: {
outLineWidth: 2,
outLineColor: '#6666aa',
backgroundColor: '#9999aa',
size: 15
},
defaultPolyline: {
outLineWidth: 2,
outLineColor: '#6666aa'
},
defaultPolygon: {
outLineWidth: 1,
outLineColor: '#6666aa',
backgroundColor: '#9999aa'
}
}
export default SymbolConfig