UNPKG

react-arcgis-wmws

Version:

React component to display a public arcgis online webmap, webscene or feature table. Uses the ESM version of the ArcGIS Javascript API. Does not use esri-loader.

10 lines (9 loc) 295 B
/// <reference types="react" /> interface IWebSceneProps { itemId: string; portalUrl: string; dockPopup: boolean; showLegend: boolean; } declare const WebSceneView: ({ itemId, portalUrl, dockPopup, showLegend, ...props }: IWebSceneProps) => JSX.Element; export { WebSceneView };