You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
338 B

import { Props } from "./";
export function useInit(props: Props, attrs: Record<string, unknown>) {
const { url, layers, styles, format, transparent, version, srs } = props;
const instance = new T.TileLayer.WMS(url, {
layers,
styles,
format,
transparent,
version,
srs,
...attrs
});
return instance;
}