@naver-maps/react
Version:
NaverMaps Component For React or Next
11 lines • 585 B
TypeScript
/// <reference types="navermaps" />
import { type PropsWithChildren, type HtmlHTMLAttributes } from "react";
import type { InstallOptions, Layers, MapOptions } from "types";
interface Props extends InstallOptions, HtmlHTMLAttributes<HTMLDivElement> {
mapOptions?: MapOptions;
initLayers?: Layers[];
onLoaded?: (map: naver.maps.Map) => void;
}
export default function Map({ clientId, category, subModules, initLayers, mapOptions, onLoaded, children, ...props }: PropsWithChildren<Props>): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=Map.d.ts.map