Not a problem at all, the forum is a place for learning and knowledge exchange. I would also recommend you to use the Maps web API (instead of the native) in the beginning because IMHO itās easier for prototyping/testing. You could try to integrate the native API at a later point, after you have a better idea about the app design/implementation and more experience with Ionic.
Iām having the same problem that @brozada and Iām trying on my Android Phone.
What can I do?
Iām not sure - you could check the following repository for possible causes or solutions.
Tried @aaronksaunders repository an all working. Many thanks to @aaronksaunders and @iignatov for your great help!
Other mistakes I had and solved with the repo were:
- I hadnāt installed from SDK the Google Repository and services packages.
- I was using JS key for devices.
- I didnāt execute
cordova prepare
. - The plugin wasnāt installed from phonegap googlemaps github but like in ionic-native docs.
Thanks!
Hi morning, I need help, iIām following your repo, but donāt work just showing is screen logo google left bottom
did you follow all of the steps listed by @brozada?
Add code in ionViewDidEnter - then DOM has fully loaded. I think error is coming because DOM is not loaded.
in @aaronksaunders example app, I needed to apply the following css (by inspecting it with safari via running it in the simulator / on a device) so there is no black screen:
ion-nav.has-views {
background-color: transparent !important;
}
Where did you put this code?
Before, Iāve added the following one:
ion-app.gmaps_cdv .nav-decor{
background-color: transparent !important;
}
this snippet doesnāt work anymore for me.