UNPKG

@wufengteam/wform

Version:

@wufengteam/wform

16 lines (15 loc) 418 B
import React from 'react'; import './MapContainer.less'; interface MapContainerProps { className?: string; viewMode?: string; zoom?: number; center?: [number, number]; onMapLoaded?: () => void; renderType?: string; customEngineApi?: any; } declare const MapContainer: React.ForwardRefExoticComponent<MapContainerProps & React.RefAttributes<{ map: any; }>>; export default MapContainer;