Skip to content

Commit c1149af

Browse files
committed
feat(google-maps): Add Layer components.
Fix circleci error with MapBaseLayer not being part of a module.
1 parent f83a42f commit c1149af

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/google-maps/google-maps-module.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import {NgModule} from '@angular/core';
1010

1111
import {GoogleMap} from './google-map/google-map';
12+
import {MapBaseLayer} from './map-base-layer';
1213
import {MapBicyclingLayer} from './map-bicycling-layer/map-bicycling-layer';
1314
import {MapCircle} from './map-circle/map-circle';
1415
import {MapGroundOverlay} from './map-ground-overlay/map-ground-overlay';
@@ -23,6 +24,7 @@ import {MapTransitLayer} from './map-transit-layer/map-transit-layer';
2324

2425
const COMPONENTS = [
2526
GoogleMap,
27+
MapBaseLayer,
2628
MapBicyclingLayer,
2729
MapCircle,
2830
MapGroundOverlay,

src/google-maps/public-api.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
export {GoogleMap} from './google-map/google-map';
1010
export {GoogleMapsModule} from './google-maps-module';
1111
export {MapAnchorPoint} from './map-anchor-point';
12+
export {MapBaseLayer} from './map-base-layer';
1213
export {MapBicyclingLayer} from './map-bicycling-layer/map-bicycling-layer';
1314
export {MapCircle} from './map-circle/map-circle';
1415
export {MapGroundOverlay} from './map-ground-overlay/map-ground-overlay';

0 commit comments

Comments
 (0)