基于高德地图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.
 
 
 
 

8 lines
422 B

import { IEditorState } from "@store";
export const mapOptionsSelector = (state: IEditorState) => state.map;
export const overlayTypeSelector = (state: IEditorState) => state.overlayType;
export const statusSelector = (state: IEditorState) => state.status;
export const selectedIdsSelector = (state: IEditorState) => state.selectedIds;
export const searchResultsSelector = (state: IEditorState) =>
state.searchResults;