mapping-component-package-jp 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts
CHANGED
|
@@ -216,7 +216,7 @@ declare class MapOverlayManager {
|
|
|
216
216
|
|
|
217
217
|
// Rendering Methods
|
|
218
218
|
RenderFields(locations: any[], properties: any, editMode?: boolean): void;
|
|
219
|
-
RenderRegionFarms(locationsJson: any, icon: any): void;
|
|
219
|
+
RenderRegionFarms(locationsJson: any, icon: any, fitBounds: boolean): void;
|
|
220
220
|
RenderRegions(locations: any[], properties: any): void;
|
|
221
221
|
RenderBackgroundFields(locations: any[], properties: any): void;
|
|
222
222
|
|
package/package.json
CHANGED
|
@@ -18,7 +18,7 @@ export class MapOverlayManager {
|
|
|
18
18
|
|
|
19
19
|
// Rendering Methods
|
|
20
20
|
RenderFields(locations: any[], properties: any, editMode?: boolean): void;
|
|
21
|
-
RenderRegionFarms(locationsJson: any, icon: any): void;
|
|
21
|
+
RenderRegionFarms(locationsJson: any, icon: any, fitBounds: boolean): void;
|
|
22
22
|
RenderRegions(locations: any[], properties: any): void;
|
|
23
23
|
RenderBackgroundFields(locations: any[], properties: any): void;
|
|
24
24
|
|