@antv/li-core-assets
v1.3.5
Published
core assets for location insight
Downloads
2,971
Maintainers
Readme
LI Core Assets
Assets for Location Insight App
Usage
import React from 'react';
import CoreAssets from '@antv/li-core-assets';
import { LocationInsightEditor } from '@antv/li-editor';
import defaultApplication from './application';
const assets = [CoreAssets];
export default () => {
return (
<LocationInsightEditor
style={{ height: '100vh' }}
defaultApplication={defaultApplication}
assets={assets}
onChange={(app) => {}}
/>
);
};