Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot find namespace 'google' after upgrading to version 6 #34

Open
brune83 opened this issue Aug 21, 2024 · 2 comments
Open

Cannot find namespace 'google' after upgrading to version 6 #34

brune83 opened this issue Aug 21, 2024 · 2 comments
Labels

Comments

@brune83
Copy link

brune83 commented Aug 21, 2024

Bug Report

Plugin(s)

"@capacitor/google-maps": "6.0.0"

Capacitor Version

6.1.2

Platform(s)

Web

Current Behavior

I upgraded capacitor/google-maps plugin in my project (I was using version 6.0.0-rc.0 before and it was working) and now building the project or executing ionic serve I have this errors:
[ng] Error: node_modules/@capacitor/google-maps/dist/typings/definitions.d.ts:43:34 - error TS2503: Cannot find namespace 'google'. [ng] 43 export interface Polygon extends google.maps.PolygonOptions { [ng] ~~~~~~ [ng] Error: node_modules/@capacitor/google-maps/dist/typings/definitions.d.ts:64:33 - error TS2503: Cannot find namespace 'google'. [ng] 64 export interface Circle extends google.maps.CircleOptions { [ng] ~~~~~~ [ng] Error: node_modules/@capacitor/google-maps/dist/typings/definitions.d.ts:84:35 - error TS2503: Cannot find namespace 'google'. [ng] 84 export interface Polyline extends google.maps.PolylineOptions { [ng] ~~~~~~ [ng] Error: node_modules/@capacitor/google-maps/dist/typings/definitions.d.ts:117:42 - error TS2503: Cannot find namespace 'google'. [ng] 117 export interface GoogleMapConfig extends google.maps.MapOptions { [ng] ~~~~~~ [ng] Error: node_modules/@capacitor/google-maps/dist/typings/definitions.d.ts:159:14 - error TS2503: Cannot find namespace 'google'. [ng] 159 styles?: google.maps.MapTypeStyle[] | null;

screen

Expected Behavior

I expect my project compiles normally

Code Reproduction

Just build a project using version 6 of @capacitor/google-maps plugin

Other Technical Details

Additional Context

@ionitron-bot ionitron-bot bot added the triage label Aug 21, 2024
@brune83
Copy link
Author

brune83 commented Aug 21, 2024

I solved it including this declaration in the file tsconfig.app.json:
"compilerOptions": { "types": [ "google.maps" ] }

Maybe you should specify it in the documentation of the plugin.
Thank you.

@singatias
Copy link

I solved it including this declaration in the file tsconfig.app.json: "compilerOptions": { "types": [ "google.maps" ] }

Maybe you should specify it in the documentation of the plugin. Thank you.

Thank you!

This issue shouldn't get close until the documentation is fix imo.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants