react-leaflet icon indicating copy to clipboard operation
react-leaflet copied to clipboard

Adding new types on MapContainer and TileLayer

Open samdyra opened this issue 1 year ago • 1 comments

Hi! 👋

Firstly, thanks for your work on this project! 🙂

Today I used patch-package to patch [email protected] for the project I'm working on.

Here is the diff that solved my problem:

diff --git a/node_modules/react-leaflet/lib/MapContainer.d.ts b/node_modules/react-leaflet/lib/MapContainer.d.ts
index 9cc061e..6892b7d 100644
--- a/node_modules/react-leaflet/lib/MapContainer.d.ts
+++ b/node_modules/react-leaflet/lib/MapContainer.d.ts
@@ -9,5 +9,7 @@ export interface MapContainerProps extends MapOptions {
     placeholder?: ReactNode;
     style?: CSSProperties;
     whenReady?: () => void;
+    center: number[];
+    zoom: number;
 }
 export declare const MapContainer: React.ForwardRefExoticComponent<MapContainerProps & React.RefAttributes<LeafletMap>>;
diff --git a/node_modules/react-leaflet/lib/TileLayer.d.ts b/node_modules/react-leaflet/lib/TileLayer.d.ts
index 9bd5d47..04792af 100644
--- a/node_modules/react-leaflet/lib/TileLayer.d.ts
+++ b/node_modules/react-leaflet/lib/TileLayer.d.ts
@@ -3,5 +3,6 @@ import { type LayerProps } from '@react-leaflet/core';
 import { TileLayer as LeafletTileLayer, type TileLayerOptions } from 'leaflet';
 export interface TileLayerProps extends TileLayerOptions, LayerProps {
     url: string;
+    attribution: string;
 }
 export declare const TileLayer: import("react").ForwardRefExoticComponent<TileLayerProps & import("react").RefAttributes<LeafletTileLayer>>;

This issue body was partially generated by patch-package.

samdyra avatar Apr 02 '23 12:04 samdyra