feat: 新增三维地球

This commit is contained in:
奔跑的面条
2022-10-12 21:08:24 +08:00
parent c84f6d9c33
commit 380a6b95b7
35 changed files with 1438 additions and 6 deletions
+6
View File
@@ -17,6 +17,7 @@ export const scatterBasicUrl = '/mock/scatterBasic'
export const mapUrl = '/mock/map'
export const wordCloudUrl = '/mock/wordCloud'
export const treemapUrl = '/mock/treemap'
export const threeEarth01Url = '/mock/threeEarth01Data'
const mockObject: MockMethod[] = [
{
@@ -91,6 +92,11 @@ const mockObject: MockMethod[] = [
method: RequestHttpEnum.GET,
response: () => test.fetchTreemap
},
{
url: threeEarth01Url,
method: RequestHttpEnum.GET,
response: () => test.threeEarth01Data
},
]
export default mockObject