Skip to content

Commit e4c4500

Browse files
committed
yarn build
1 parent 4c979a0 commit e4c4500

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/Map/assets/dist/abstract_map_controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class default_1 extends Controller {
99
this.polylines = [];
1010
}
1111
connect() {
12-
const { center, zoom, options, markers, polygons, polylines, fitBoundsToMarkers } = this.viewValue;
12+
const { center, zoom, options, markers, polygons, fitBoundsToMarkers } = this.viewValue;
1313
this.dispatchEvent('pre-connect', { options });
1414
this.map = this.doCreateMap({ center, zoom, options });
1515
markers.forEach((marker) => this.createMarker(marker));

src/Map/src/Bridge/Google/assets/dist/map_controller.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ let default_1$1 = class default_1 extends Controller {
1010
this.polylines = [];
1111
}
1212
connect() {
13-
const { center, zoom, options, markers, polygons, polylines, fitBoundsToMarkers } = this.viewValue;
13+
const { center, zoom, options, markers, polygons, fitBoundsToMarkers } = this.viewValue;
1414
this.dispatchEvent('pre-connect', { options });
1515
this.map = this.doCreateMap({ center, zoom, options });
1616
markers.forEach((marker) => this.createMarker(marker));
@@ -120,7 +120,7 @@ class default_1 extends default_1$1 {
120120
const { points, title, infoWindow, rawOptions = {} } = definition;
121121
const polygon = new _google.maps.Polygon({
122122
...rawOptions,
123-
path: points,
123+
paths: points,
124124
map: this.map,
125125
});
126126
if (title) {

src/Map/src/Bridge/Leaflet/assets/dist/map_controller.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ export default class extends AbstractMapController<MapOptions, typeof L.Map, Mar
2727
}): L.Popup;
2828
protected doFitBoundsToMarkers(): void;
2929
}
30-
export { };
30+
export {};

src/Map/src/Bridge/Leaflet/assets/dist/map_controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class default_1 extends Controller {
1111
this.polylines = [];
1212
}
1313
connect() {
14-
const { center, zoom, options, markers, polygons, polylines, fitBoundsToMarkers } = this.viewValue;
14+
const { center, zoom, options, markers, polygons, fitBoundsToMarkers } = this.viewValue;
1515
this.dispatchEvent('pre-connect', { options });
1616
this.map = this.doCreateMap({ center, zoom, options });
1717
markers.forEach((marker) => this.createMarker(marker));

0 commit comments

Comments
 (0)