Skip to content
This repository was archived by the owner on Jun 23, 2025. It is now read-only.

Commit c340ffd

Browse files
committed
fix(MapTypeStyle): set attrs to optional
Fixes #617
1 parent fb402f3 commit c340ffd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/core/services/google-maps-types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@ export interface MapOptions {
135135
}
136136

137137
export interface MapTypeStyle {
138-
elementType: 'all'|'geometry'|'geometry.fill'|'geometry.stroke'|'labels'|'labels.icon'|
138+
elementType?: 'all'|'geometry'|'geometry.fill'|'geometry.stroke'|'labels'|'labels.icon'|
139139
'labels.text'|'labels.text.fill'|'labels.text.stroke';
140-
featureType: 'administrative'|'administrative.country'|'administrative.land_parcel'|
140+
featureType?: 'administrative'|'administrative.country'|'administrative.land_parcel'|
141141
'administrative.locality'|'administrative.neighborhood'|'administrative.province'|'all'|
142142
'landscape'|'landscape.man_made'|'landscape.natural'|'landscape.natural.landcover'|
143143
'landscape.natural.terrain'|'poi'|'poi.attraction'|'poi.business'|'poi.government'|

0 commit comments

Comments
 (0)