/volumecalculation_arcgis

TileImageryLayer + pixelBlocks, inspired by a Esri DevSummit 2023 talk in Palm Springs

Primary LanguageTypeScriptApache License 2.0Apache-2.0

ArcGIS React

Components & Hooks for the ArcGIS JS SDK

npm arcgis version downloads license

Quick Start

Install dependencies

npm i @arcgis/core arcgis-react

Simple Components

import React from 'react';
import { ArcMapView } from 'arcgis-react';

const SimpleMap = () => <ArcMapView map={{ basemap: 'streets-vector' }} />;

const SimpleScene = () => <ArcSceneView map={{ basemap: 'streets-vector' }} />;

const SimpleMapWithUI = () => (
  <ArcMapView map={{ basemap: 'streets-vector' }}>
    <ArcUI position="bottom-left">
      <div>hello world</div>
    </ArcUI>
  </ArcMapView>
);