mirror of https://gitee.com/antv-l7/antv-l7
39 lines
773 B
TypeScript
39 lines
773 B
TypeScript
import { Fullscreen, GaodeMap, Scene } from '@antv/l7';
|
|
import React from 'react';
|
|
// tslint:disable-next-line:no-duplicate-imports
|
|
import { FunctionComponent, useEffect } from 'react';
|
|
|
|
const Demo: FunctionComponent = () => {
|
|
useEffect(() => {
|
|
const scene = new Scene({
|
|
id: 'map',
|
|
map: new GaodeMap({
|
|
style: 'normal',
|
|
center: [120, 30],
|
|
pitch: 0,
|
|
zoom: 6.45,
|
|
}),
|
|
// logoVisible: false,
|
|
});
|
|
|
|
scene.on('loaded', () => {
|
|
const newFullscreen = new Fullscreen();
|
|
scene.addControl(newFullscreen);
|
|
});
|
|
}, []);
|
|
|
|
return (
|
|
<>
|
|
<div
|
|
id="map"
|
|
style={{
|
|
height: '500px',
|
|
position: 'relative',
|
|
}}
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Demo;
|