# useMap
The `useMap` hook allows a custom component to reference the [Map](/docs/api-reference/map.md) that contains it.
When used with the [MapProvider](/docs/api-reference/map-provider.md), this hook can also reference maps that are rendered outside of the current component's direct render tree.
```js
/// Example using `useMap` inside a Map
import {Map, useMap} from 'react-map-gl';
function Root() {
return (
);
}
function NavigateButton() {
const {current: map} = useMap();
const onClick = () => {
map.flyTo({center: [-122.4, 37.8]});
};
return ;
}
```
```js
/// Example using `useMap` with `MapProvider`
import {MapProvider, Map, useMap} from 'react-map-gl';
function Root() {
return (
);
}
function NavigateButton() {
const {myMapA, myMapB} = useMap();
const onClick = () => {
myMapA.flyTo({center: [-122.4, 37.8]});
myMapB.flyTo({center: [-74, 40.7]});
};
return ;
}
```
See a full example [here](https://github.com/visgl/react-map-gl/tree/7.0-release/examples/get-started/hook).
## Signature
`useMap(): {current?: MapRef, [id: string]: MapRef}`
The hook returns an object that contains all mounted maps under the closest `MapProvider`. The keys are each map's [id](/docs/api-reference/map.md#id) and the values are the [MapRef](/docs/api-reference/types.md#mapref).
If the hook is used inside a decendent of a `Map` component, the returned object also contains a `current` field that references the containing map.
## Source
[use-map.tsx](https://github.com/visgl/react-map-gl/tree/7.0-release/src/components/use-map.tsx)