React Geospatial Tools
npm install @itwin/geo-tools-reactCopyright © Bentley Systems, Incorporated. All rights reserved.
The geo-tools-react provides various React components and iTwin.js tools to support GIS workflows.
With a few short lines, you can add the Geo Address Search tool to your app.
``ts`
import { GeoTools } from "@itwin/geo-tools-react";
...
await GeoTools.initialize(IModelApp.localization);
`ts``
import { UiItemsManager } from "@itwin/appui-abstract";
import { GeoToolsAddressSearchProvider } from "@itwin/geo-tools-react";
...
UiItemsManager.register(new GeoToolsAddressSearchProvider());