Identify Show First Control
On map click, identifies the first hit and runs the identify resolver (default: show-detail / attribute-table when available). No toolbar button. Needs identify nodes on the dataset (see Identify).
Props
| Prop | Description | Type | Required | Default Value |
|---|---|---|---|---|
mapId | string | false | -- | |
dragId | string | false | -- | |
btnWidth | number | false | 40 | |
controlOrder | CSS flex order for the standalone button | number | false | 0 |
position | 'top-left', 'top-right', 'bottom-left', 'bottom-right' | false | 'bottom-right' | |
controlLayout | 'standalone' (corner), 'toolbar' (always in toolbar), 'button' (always corner; not auto-promoted on mobile) | 'standalone' | 'toolbar' | 'button' | false | 'standalone' |
controlVisible | boolean | false | true |
Map also accepts buttonInMobile ('button' | 'toolbar' | 'menu', default 'button'). On viewports ≤640px:
'button'— leave corner buttons unchanged'toolbar'— move declared control buttons into a singleToolbarControlhost (exceptcontrolLayout="button"). Mount oneToolbarControlin the map slot'menu'— hide per-control corner buttons; fan out intact clusters bypositioninto corner stacks with outside-in More. Mount oneToolbarControl.
See ToolbarControl.
| Prop | Type | Default | Effect |
|---|---|---|---|
preferResultControl | boolean | false | Use Identify Result panel instead of auto detail/table (requires IdentifyControl / result panel on the map) |
Events: none.
Vue
vue
<script setup lang="ts">
import { Map } from '@hungpvq/vue-map-core';
import {
IdentifyShowFirstControl,
ComponentManagementControl,
} from '@hungpvq/vue-map-dataset';
</script>
<template>
<Map>
<IdentifyShowFirstControl />
<ComponentManagementControl />
</Map>
</template>Prefer result panel:
vue
<IdentifyControl position="top-right" prefer-result-control />
<!-- or with ShowFirst + IdentifyControl mounted together -->React
tsx
<IdentifyShowFirstControl />
<ComponentManagementControl />