Code example
import { useMemo, useState } from 'react';
import {
createGeoPoint,
createMapCameraPosition,
createMarkerState,
type MarkerState,
} from '@mapconductor/js-sdk-core';
import { InfoBubble, Markers } from '@mapconductor/js-sdk-react';
import { GoogleMapDesign, GoogleMapView2D, useGoogleMapViewState } from '@mapconductor/react-for-googlemaps';
// (1) Create the map
const initialCamera = createMapCameraPosition({
position: createGeoPoint({ latitude: 35.6812, longitude: 139.7671 }),
zoom: 12,
});
const mapViewState = useGoogleMapViewState({
apiKey: import.meta.env.VITE_GOOGLE_MAPS_API_KEY,
mapDesignType: GoogleMapDesign.Normal,
cameraPosition: initialCamera,
});
// (2) Prepare the data and interaction state
const [selectedMarker, setSelectedMarker] = useState<MarkerState | null>(null);
const storeMarkers = useMemo(() => stores.map(store => createMarkerState({
id: store.id,
position: createGeoPoint({ latitude: store.lat, longitude: store.lng }),
extra: store,
onClick: markerState => setSelectedMarker(markerState),
})), [stores]);
const clearSelection = () => setSelectedMarker(null);
// (3) Render the map and its overlays
<GoogleMapView2D mapId="DEMO_MAP_ID" state={mapViewState} onMapClick={clearSelection}>
<Markers states={storeMarkers} />
{selectedMarker && (
<InfoBubble marker={selectedMarker}>
<StoreInfoView store={selectedMarker.extra} />
</InfoBubble>
)}
</GoogleMapView2D>
How the code works
Render a collection of store markers in one composition and show an information bubble for the selected store.
The storeMarkers array is built once with useMemo: each createMarkerState keeps its store record in the extra field and an onClick handler that saves the tapped MarkerState, while onMapClick clears the selection.
The batched <Markers> component draws every store in a single pass, and the InfoBubble is anchored to the selected marker so StoreInfoView appears only while a store is chosen.