派生自 wuyushui/SewerAndRainNetwork

徐旺旺
2021-03-03 c42fafcfba7aa2d32176533be368ee77bc0150d6
src/conf/Styles.js
@@ -1,24 +1,21 @@
export const LineStyles = {
  pipeline: {
const defaultLineStyle = {
    fill: true,
    weight: 2,
    fillColor: '#06cccc',
    color: '#06cccc',
  fillColor: '#73b2ff',
  color: '#73b2ff',
    fillOpacity: 0.2,
    opacity: 0.8,
  opacity: 1,
    dashArray: '10,4',
    dashSpeed: -10
  dashSpeed: -10,
  size: [20, 20]
  }
}
export const PointStyles = {
const customStyles = {
  pipeline: {
    fill: true,
    weight: 2,
    fillColor: '#06cccc',
    color: '#06cccc',
    fillOpacity: 0.2,
    opacity: 0.8,
    dashArray: '10,4',
    dashSpeed: -10
  }
}
export default {
  defaultLineStyle,
  customStyles
}