基于高德地图JS api开发的geojson编辑器. http://geojson.finevis.cc/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
487 B

import { Collapse } from "antd";
import "./style.less";
const { Panel } = Collapse;
const Catalog = () => {
const callback = (key: string | string[]) => console.log(key);
return (
<Collapse
defaultActiveKey={["1"]}
onChange={callback}
expandIconPosition="right"
>
<Panel header="矩形" key="1"></Panel>
<Panel header="多边形" key="2"></Panel>
<Panel header="线段" key="3"></Panel>
</Collapse>
);
};
export default Catalog;