Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pansyjs/larkmap
A React toolkit for geospatial visualization based on L7
https://github.com/pansyjs/larkmap
amap component l7 mapbox react typescript
Last synced: about 1 month ago
JSON representation
A React toolkit for geospatial visualization based on L7
- Host: GitHub
- URL: https://github.com/pansyjs/larkmap
- Owner: pansyjs
- Created: 2022-07-20T12:31:45.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-19T07:46:13.000Z (10 months ago)
- Last Synced: 2024-04-16T05:19:15.509Z (8 months ago)
- Topics: amap, component, l7, mapbox, react, typescript
- Language: TypeScript
- Homepage: https://larkmap.xingkang.wang
- Size: 7.54 MB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
LarkMap## ๐ฆ ๅฎ่ฃ
```sh
# npm
$ npm install @antv/l7 @pansy/lark-map# yarn
$ yarn add @antv/l7 @pansy/lark-map# pnpm
$ pnpm i @antv/l7 @pansy/lark-map
```## ๐จ ไฝฟ็จ
```tsx
import { LarkMap } from '@pansy/lark-map';const config = {
mapType: 'Mapbox',
mapOptions: {
style: 'light',
center: [120.210792, 30.246026],
zoom: 8,
...
},
};export default () => {
return ;
};
```