You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
our app is used my thousands of users. they each have to get their own api key (so I don't have to pay for it)
currently on our ionic vue app, I prompt for the apikey and save it locally.. (ios)
how can I do that here?
are there apis I can use, like the capacitor plugin
this.newMap=awaitGoogleMap.create({/* eslint-enable */id: 'my-map',// Unique identifier for this map instanceelement: mapRef,// reference to the capacitor-google-map elementapiKey: API_KEY,// Your Google Maps API Keyconfig: {center: {// The initial position to be rendered by the maplat: this.currentMapCenter.lat,lng: this.currentMapCenter.lng,},zoom: this.zoomLevel,// The initial zoom level to be rendered by the map}})
maybe I can set the apikey in created()
The text was updated successfully, but these errors were encountered:
our app is used my thousands of users. they each have to get their own api key (so I don't have to pay for it)
currently on our ionic vue app, I prompt for the apikey and save it locally.. (ios)
how can I do that here?
are there apis I can use, like the capacitor plugin
maybe I can set the apikey in created()
The text was updated successfully, but these errors were encountered: