- Notifications
You must be signed in to change notification settings - Fork 6.8k
/
Copy pathpublic-api.ts
41 lines (40 loc) · 1.97 KB
/
public-api.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
export{GoogleMap}from'./google-map/google-map';
export{GoogleMapsModule}from'./google-maps-module';
export{MapAnchorPoint}from'./map-anchor-point';
export{MapBaseLayer}from'./map-base-layer';
export{MapBicyclingLayer}from'./map-bicycling-layer/map-bicycling-layer';
export{MapCircle}from'./map-circle/map-circle';
export{MapDirectionsRenderer}from'./map-directions-renderer/map-directions-renderer';
export{
MapDirectionsService,
MapDirectionsResponse,
}from'./map-directions-renderer/map-directions-service';
export{MapGroundOverlay}from'./map-ground-overlay/map-ground-overlay';
export{MapInfoWindow}from'./map-info-window/map-info-window';
export{MapKmlLayer}from'./map-kml-layer/map-kml-layer';
export{MapMarker}from'./map-marker/map-marker';
export{MapAdvancedMarker}from'./map-advanced-marker/map-advanced-marker';
export{DeprecatedMapMarkerClusterer}from'./deprecated-map-marker-clusterer/deprecated-map-marker-clusterer';
export{MapMarkerClusterer}from'./map-marker-clusterer/map-marker-clusterer';
export*from'./map-marker-clusterer/map-marker-clusterer-types';
export{MapPolygon}from'./map-polygon/map-polygon';
export{MapPolyline}from'./map-polyline/map-polyline';
export{MapRectangle}from'./map-rectangle/map-rectangle';
export{MapTrafficLayer}from'./map-traffic-layer/map-traffic-layer';
export{MapTransitLayer}from'./map-transit-layer/map-transit-layer';
export{MapHeatmapLayer,HeatmapData}from'./map-heatmap-layer/map-heatmap-layer';
export{MapGeocoder,MapGeocoderResponse}from'./map-geocoder/map-geocoder';
export{
MarkerClustererOptions,
ClusterIconStyle,
AriaLabelFn,
Calculator,
}from'./deprecated-map-marker-clusterer/deprecated-marker-clusterer-types';
export{MapEventManager}from'./map-event-manager';