-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ff9810
commit 3302bf2
Showing
27 changed files
with
118 additions
and
656 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,3 @@ const App = () => { | |
|
||
export default App; | ||
``` | ||
|
||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,3 @@ const App = () => { | |
|
||
export default App; | ||
``` | ||
|
||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
title: 右键菜单 | ||
order: 0 | ||
group: | ||
title: 基础资产 | ||
path: /basic | ||
nav: | ||
title: 资产包 | ||
path: /assets | ||
order: 1 | ||
--- | ||
|
||
```jsx | ||
import * as React from 'react'; | ||
import { GISDK_TEST } from '@antv/gi-sdk'; | ||
import * as Assets from '@antv/gi-assets-basic'; | ||
import Asset from './index.tsx'; | ||
|
||
const { registerMeta, info } = Asset; | ||
|
||
const App = () => { | ||
return ( | ||
<div> | ||
<GISDK_TEST | ||
assets={Assets} | ||
activeAssets={[ | ||
{ | ||
id: 'ContextMenu', | ||
type: 'GICC_MENU', | ||
}, | ||
{ | ||
id: 'RemoveNodeWithMenu', | ||
type: 'GIAC_MENU', | ||
}, | ||
]} | ||
/> | ||
</div> | ||
); | ||
}; | ||
|
||
export default App; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,3 @@ const App = () => { | |
|
||
export default App; | ||
``` | ||
|
||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,3 @@ const App = () => { | |
|
||
export default App; | ||
``` | ||
|
||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,3 @@ const App = () => { | |
|
||
export default App; | ||
``` | ||
|
||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,3 @@ const App = () => { | |
|
||
export default App; | ||
``` | ||
|
||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,3 @@ const App = () => { | |
|
||
export default App; | ||
``` | ||
|
||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,3 @@ const App = () => { | |
|
||
export default App; | ||
``` | ||
|
||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,3 @@ const App = () => { | |
|
||
export default App; | ||
``` | ||
|
||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,3 @@ const App = () => { | |
|
||
export default App; | ||
``` | ||
|
||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
title: 邻居查询 | ||
order: 0 | ||
group: | ||
title: 基础资产 | ||
path: /basic | ||
nav: | ||
title: 资产包 | ||
path: /assets | ||
order: 1 | ||
--- | ||
|
||
```jsx | ||
import * as React from 'react'; | ||
import { GISDK_TEST } from '@antv/gi-sdk'; | ||
import * as Assets from '@antv/gi-assets-basic'; | ||
import Asset from './index.tsx'; | ||
|
||
const { registerMeta, info } = Asset; | ||
|
||
const App = () => { | ||
return ( | ||
<div> | ||
<GISDK_TEST assets={Assets} activeAssets={[info]} /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default App; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,3 @@ const App = () => { | |
|
||
export default App; | ||
``` | ||
|
||
``` | ||
``` |
This file was deleted.
Oops, something went wrong.
115 changes: 0 additions & 115 deletions
115
packages/gi-assets-basic/src/components/OperatorHeader/Component.tsx
This file was deleted.
Oops, something went wrong.
63 changes: 0 additions & 63 deletions
63
packages/gi-assets-basic/src/components/OperatorHeader/EventEmitter.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.