import { toLngLat } from "../../../utils"; import { Props } from "./"; export function useInit(props: Props) { const { center, radius, color, weight, opacity, lineStyle, fillColor, fillOpacity } = props; const instance = new T.Circle(toLngLat(center), radius, { color, weight, opacity, lineStyle, fillColor, fillOpacity }); return instance; }