Skip to content

Instantly share code, notes, and snippets.

@yasudacloud
Last active December 25, 2024 13:38
Show Gist options
  • Save yasudacloud/ea8045b55a3c3740f52c42f8c64aed0e to your computer and use it in GitHub Desktop.
Save yasudacloud/ea8045b55a3c3740f52c42f8c64aed0e to your computer and use it in GitHub Desktop.
export class CustomTileLayer extends L.TileLayer {
createTile(coords: any, done: any) {
return document.createElement('div');
}
}
...
// コンポーネント内で
useEffect(() => {
const tileLayer = new CustomTileLayer('');
tileLayer.addTo(map);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment