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
Able to search places, getting nearby places as well, Map view is not rendered in the screen. I am able to move scroll left/right/top/bottom with finger in blank screen and able to see the updated location information in info section. Not sure whats going wrong here. I have below enabled APIs.
Maps Embed API
Maps JavaScript API
Maps SDK for Android
Maps SDK for iOS
Places API
Geocoding API
Geolocation API
Flutter doctor -v
• Flutter version 2.5.2
• Framework revision 3595343e20 (7 weeks ago), 2021-09-30 12:58:18 -0700
• Engine revision 6ac856380f
• Dart version 2.14.3
Android Manifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="xxxxxxxxxxxxxxxxxxxxxx">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<queries>
<!-- If your app opens https URLs -->
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="https" />
</intent>
<!-- If your app makes calls -->
<intent>
<action android:name="android.intent.action.DIAL" />
<data android:scheme="tel" />
</intent>
</queries>
<application
android:label="Surprise Me"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<!-- Displays an Android View that continues showing the launch screen
Drawable until Flutter paints its first frame, then this splash
screen fades out. A splash screen is useful to avoid any visual
gap between the end of Android's launch screen and the painting of
Flutter's first frame. -->
<meta-data
android:name="io.flutter.embedding.android.SplashScreenDrawable"
android:resource="@drawable/launch_background"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
android:name="flutterEmbedding"
android:value="2" />
<meta-data android:name="com.google.android.geo.API_KEY"
android:value="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"/>
</application>
</manifest>
Code: LocationResult? result = await Get.to(PlacePicker("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", displayLocation: geo))?.catchError((err) { print('error from place picker'); print(err); });
I dont see issue in logs as well. Not sure whats missing.
Able to search places, getting nearby places as well, Map view is not rendered in the screen. I am able to move scroll left/right/top/bottom with finger in blank screen and able to see the updated location information in info section. Not sure whats going wrong here. I have below enabled APIs.
Flutter doctor -v
• Flutter version 2.5.2
• Framework revision 3595343e20 (7 weeks ago), 2021-09-30 12:58:18 -0700
• Engine revision 6ac856380f
• Dart version 2.14.3
Android Manifest.xml
Code:
LocationResult? result = await Get.to(PlacePicker("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", displayLocation: geo))?.catchError((err) { print('error from place picker'); print(err); });
I dont see issue in logs as well. Not sure whats missing.
Logs while initiating the map rendering.
The text was updated successfully, but these errors were encountered: