import request from '@/config/axios' import { FeatureCollection } from '@antv/l7plot/dist/esm/plots/choropleth/types' export const getWorldTree = (): Promise> => { return request.get({ url: '/map/worldTree' }) } export const getGeoJson = ( country: string, areaId: string ): Promise> => { return request.get({ url: `/map/${country}/${areaId}.json` }) }