We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec064da commit 5a70634Copy full SHA for 5a70634
packages/base/src/panelview/components/identify-panel/IdentifyPanel.tsx
@@ -108,6 +108,12 @@ export const IdentifyPanelComponent: React.FC<IIdentifyComponentProps> = ({
108
: 'unset',
109
}}
110
>
111
+ {!Object.keys(features ?? {}).length && (
112
+ <div style={{ textAlign: 'center' }}>
113
+ Please select a layer from the layer list, then "i" from the toolbar
114
+ to start identifying features.
115
+ </div>
116
+ )}
117
{features &&
118
Object.values(features).map((feature, featureIndex) => (
119
<div key={featureIndex} className="jgis-identify-grid-item">
0 commit comments