Skip to content

Commit d47ef6a

Browse files
committed
chore(build): prepare release 2.2.0
1 parent 216b359 commit d47ef6a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+2463
-868
lines changed

dist/amd/configure.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ export interface ConfigInterface {
33
apiKey: string;
44
apiLibraries: string;
55
options: any;
6+
markerCluster: {
7+
enable: boolean;
8+
src?: string;
9+
imagePath?: string;
10+
imageExtension?: string;
11+
};
612
}
713
export declare class Configure {
814
private _config;

dist/amd/configure.js

Lines changed: 10 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/amd/configure.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/amd/google-maps-api.js

Lines changed: 8 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/amd/google-maps-api.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/amd/google-maps.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { TaskQueue } from 'aurelia-task-queue';
22
import { BindingEngine } from 'aurelia-binding';
33
import { Configure } from './configure';
44
import { GoogleMapsAPI } from './google-maps-api';
5+
import { MarkerClustering } from './marker-clustering';
56
export interface Marker {
67
icon?: string;
78
label?: string;
@@ -23,6 +24,7 @@ export declare class GoogleMaps {
2324
private config;
2425
private bindingEngine;
2526
private googleMapsApi;
27+
private markerClustering;
2628
private _currentInfoWindow;
2729
longitude: number;
2830
latitude: number;
@@ -48,7 +50,7 @@ export declare class GoogleMaps {
4850
drawingManager: any;
4951
_renderedPolygons: any;
5052
_polygonsSubscription: any;
51-
constructor(element: Element, taskQueue: TaskQueue, config: Configure, bindingEngine: BindingEngine, googleMapsApi: GoogleMapsAPI);
53+
constructor(element: Element, taskQueue: TaskQueue, config: Configure, bindingEngine: BindingEngine, googleMapsApi: GoogleMapsAPI, markerClustering: MarkerClustering);
5254
clearMarkers(): void;
5355
attached(): void;
5456
sendBoundsEvent(): void;

dist/amd/google-maps.js

Lines changed: 16 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/amd/google-maps.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/commonjs/configure.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ export interface ConfigInterface {
33
apiKey: string;
44
apiLibraries: string;
55
options: any;
6+
markerCluster: {
7+
enable: boolean;
8+
src?: string;
9+
imagePath?: string;
10+
imageExtension?: string;
11+
};
612
}
713
export declare class Configure {
814
private _config;

dist/commonjs/configure.js

Lines changed: 10 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)