Map.jsx 9.45 KB
Newer Older
邓超's avatar
邓超 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
/* eslint-disable no-new */
import React, { useEffect, useState, useRef } from 'react';
import { ArcGISMap, Drawtool, geomUtils } from '@wisdom-map/arcgismap';

// import { AMapScene, PointLayer } from '@wisdom-map/Amap';
import {
  Modal,
  Form,
  Input,
  Slider,
  InputNumber,
  Select,
  Button,
  Cascader,
  notification,
} from 'antd';
import classnames from 'classnames';
import { GetWebSiteConfig } from '@/services/gis/gis';
import { SetServiceConfig } from '@/services/webConfig/api';
import styles from './index.less';
const { Option } = Select;

const Map = props => {
  const { visible, onCancel, schemename } = props;
  const [form] = Form.useForm();
  const [canLoadMap, setCanLoadMap] = useState(false); // 是否加载地图
  const [colorArr, setColorArr] = useState([
    { color: '#ffffff', isCheck: false },
    { color: '#000000', isCheck: false },
    { color: '#9E9E9E', isCheck: false },
    { color: '#009688', isCheck: false },
    { color: '#2196f3', isCheck: false },
    { color: '#19233c', isCheck: false },
  ]);
  const [schemeList, setSchemeList] = useState([]);
  const [options, setOptions] = useState([]);
  const [mapsettings, setMapsettings] = useState({});
  const [flag, setFlag] = useState(0);
  const mapRef = useRef();
  const mapInfo = useRef(null);

  useEffect(() => {
    if (visible) {
      GetWebSiteConfig({ client: 'sandbox' }).then(res => {
        console.log(res.data[0].mapsettings, 'res.data[0].mapsettings');
        setSchemeList(res.data[0].mapsettings.layers);
        res.data[0].mapsettings.layers.forEach(item => {
          if (item.schemename === schemename) {
            item.layerType = 'PipenetLayer';
          } else {
            item.layerType = 'dynamic';
          }
        });
        setMapsettings(res.data[0].mapsettings);
        let setttings = {};
        res.data[0].mapsettings.layers.forEach(item => {
          if (item.schemename === schemename) {
            setttings = item;
          }
        });
        // res.data[0].mapsettings.areasettings = setttings;
        // console.log(form);
        setTimeout(() => {
          form.setFieldsValue({
            areaName: [setttings.areaName],
            backgroundColor: setttings.backgroundColor,
            backgroundOpacity: setttings.backgroundOpacity * 100,
            boundColor: setttings.boundColor,
            boundWidth: parseInt(setttings.boundWidth),
            extent: setttings.extent,
            schemename,
          });
          console.log(form.getFieldsValue());
          setCanLoadMap(true);
        }, 0);
      });
      window.AMap.plugin('AMap.DistrictSearch', () => {
        let districtSearch = new AMap.DistrictSearch({
          // 关键字对应的行政区级别,country表示国家
          level: 'country',
          //  显示下级行政区级数,1表示返回下一级行政区
          subdistrict: 3,
        });

        // 搜索所有省/直辖市信息
        districtSearch.search('中国', (status, result) => {
          // 查询成功时,result即为对应的行政区信息
          console.log(result, '行政区划信息');
          setOptions(result.districtList[0].districtList);
        });
      });

      console.log('加载地图', props.schemename);
    }
  }, [visible]);

  const getMapInfo = viewObject => {
    mapInfo.current = viewObject;
  };
  // 选择颜色
  const checkColor = color => {
    form.setFieldsValue({ backgroundColor: color });
    mapRef.current.updateAreaColor(color);
    setFlag(flag + 1);
  };
  const changeValue = (changedFields, allFields) => {
    console.log(changedFields, allFields);
    let obj = JSON.parse(JSON.stringify(mapsettings));
    const index = obj.layers.findIndex(item => item.schemename === schemename);
    switch (changedFields[0].name[0]) {
      case 'backgroundOpacity':
        obj.layers[index].backgroundOpacity = changedFields[0].value / 100;
        mapRef.current.changeBackgroundOpacity(obj.layers[index].backgroundOpacity);
        break;
      case 'boundWidth':
        obj.layers[index].boundWidth = changedFields[0].value;
        mapRef.current.changeBoundWidthValue(obj.layers[index].boundWidth);
        break;
      case 'areaName':
        Drawtool.deactivate(false);
        obj.layers[index].areaName = changedFields[0].value[changedFields[0].value.length - 1];
        mapRef.current.changeAreaName(obj.layers[index].areaName);
        break;
      case 'schemename':
        Drawtool.deactivate(false);
        let setttings;
        obj.layers.forEach(item => {
          if (item.schemename === changedFields[0].value) {
            item.layerType = 'PipenetLayer';
            setttings = item;
          } else {
            item.layerType = 'dynamic';
          }
        });
        form.setFieldsValue({
          areaName: [setttings.areaName],
          backgroundColor: setttings.backgroundColor,
          backgroundOpacity: setttings.backgroundOpacity * 100,
          boundColor: setttings.boundColor,
          boundWidth: parseInt(setttings.boundWidth),
          extent: setttings.extent,
        });
        setMapsettings(obj);
        break;

      default:
        break;
    }
  };
  // 选择范围
  const onTangleClick = e => {
    console.log(mapInfo.current);
    Drawtool.activate({
      view: mapInfo.current,
      action: 'extent',
      drawEnd: data => {
        console.log(data);
        const geom = geomUtils.toGeometry({
          type: 'extent',
          xmin: data.rings[0][0][0],
          xmax: data.rings[0][2][0],
          ymin: data.rings[0][0][1],
          ymax: data.rings[0][1][1],
        });
        form.setFieldsValue({
          extent: `${data.rings[0][0][0]},${data.rings[0][0][1]},${data.rings[0][2][0]},${
            data.rings[0][1][1]
          }`,
        });
        mapRef.current.gotoGeometry(geom);
      },
    });
  };
  const onFinish = () => {
    console.log(form.getFieldValue('extent'));
    console.log(Drawtool.graphic, 'Drawtool');
    if (!Drawtool.graphic) {
      notification.error({
        message: '提示',
        duration: 3,
        description: '请选择复位范围再保存',
      });
      return;
    }
    const obj = form.getFieldsValue();

    const jsConfig = {
      extent: form.getFieldValue('extent'),
      areaName: obj.areaName[obj.areaName.length - 1],
      boundColor: '#86c8f8',
      boundWidth: obj.boundWidth,
      backgroundColor: obj.backgroundColor,
      backgroundOpacity: obj.backgroundOpacity / 100,
    };
    SetServiceConfig({
      schemename: obj.schemename,
      terminalType: 'web',
      isBaseMap: false,
      jsonCfg: JSON.stringify(jsConfig),
    }).then(res => {
      notification.success({
        message: '提示',
        duration: 3,
        description: '保存成功',
      });
      console.log(res, 'res');
    });
  };
  return (
    <div>
      <Modal
        title={schemename}
        visible={visible}
        width={1300}
        onCancel={onCancel}
        maskClosable={false}
        onOk={onFinish}
        destroyOnClose
      >
        <div className={styles.mapContent}>
          <div className={styles.mapTool}>
            <Form
              form={form}
              labelCol={{ span: 8 }}
              wrapperCol={{ span: 16 }}
              onFieldsChange={changeValue}
            >
              <Form.Item label="背景颜色" name="backgroundColor">
                <div className={styles.colorContent}>
                  {colorArr.map(item => (
                    <div
                      className={classnames(styles.colorBox, {
                        [styles.currentColor]: item.color === form.getFieldValue('backgroundColor'),
                      })}
                      key={item.color}
                      style={{ background: item.color }}
                      onClick={() => checkColor(item.color)}
                    />
                  ))}
                </div>
              </Form.Item>
              <Form.Item label="透明度修改" name="backgroundOpacity">
                <Slider min={0} max={100} />
              </Form.Item>
              <Form.Item label="边界宽度修改" name="boundWidth">
                <InputNumber min={1} max={10} />
              </Form.Item>
              <Form.Item label="切换方案" name="schemename">
                <Select placeholder="请选择方案">
                  {schemeList.map((item, index) => (
                    <Option value={item.schemename} key={index}>
                      {item.schemename}
                    </Option>
                  ))}
                </Select>
              </Form.Item>
              <Form.Item label="地区" name="areaName">
                <Cascader
                  fieldNames={{
                    label: 'name',
                    value: 'name',
                    children: 'districtList',
                  }}
                  showSearch
                  options={options}
                  placeholder="请选择行政区"
                  changeOnSelect
                  allowClear={false}
                />
              </Form.Item>
              <Form.Item wrapperCol={{ offset: 8, span: 16 }}>
                <Button type="primary" onClick={e => onTangleClick(e)}>
                  复位范围修改
                </Button>
              </Form.Item>
            </Form>
          </div>
          <div className={styles.mapBox}>
            {canLoadMap && (
              <ArcGISMap ref={mapRef} getMapInfo={e => getMapInfo(e)} config={mapsettings} />
            )}
          </div>
        </div>
      </Modal>
    </div>
  );
};

export default Map;