Status Update
Comments
ht...@googlemail.com <ht...@googlemail.com> #2
i am using these dependencies for the map
// Maps SDK for Android KTX Library implementation 'com.google.maps.android:maps-ktx:3.0.0'
// Maps SDK for Android Utility Library KTX Library
implementation 'com.google.maps.android:maps-utils-ktx:3.0.0'
implementation 'com.google.android.gms:play-services-base:18.5.0' implementation 'com.google.android.gms:play-services-basement:18.5.0' implementation 'com.google.android.gms:play-services-maps:19.0.0'
and also getting some map sdk error as well dab File created: google_maps_sdk_crash dab File created: _google_maps_sdk_crash_count_1 dab Couldn't create marker: google_maps_sdk_crash dab File created: _google_maps_sdk_crash_count_2 dab Marker deleted: _google_maps_sdk_crash_count_1
ht...@googlemail.com <ht...@googlemail.com> #3
Thank you for posting.
We are currently looking into this and will get back to you as soon as we have an update.
ht...@googlemail.com <ht...@googlemail.com> #4
Thank you for waiting.
We'll need some more details to troubleshoot this issue - please provide the following, in particular steps to reproduce the issue:
-
Put together a simplified reproduction case (
http://sscce.org/ ) and add it to a git hosting provider (e.g. github, bitbucket, etc)? The easiest way to do this might be to fork the Google Maps Android API Samples Repository and modify one of the existing demo activities:https://github.com/googlemaps/android-samples -
List steps to reproduce the problem
- Maps SDK client library version (used to build your app):
- Maps renderer (Latest or Legacy):
- Devices you have verified this issue on:
- Google Play Services version on the device:
- Android version:
- Manufacturer and model:
- Was this working correctly on a previous version of Google Play Services? (If yes, which client library and SDK version?)
-
Attach the following:
- screenshots
- sample code
- an APK if possible.
-
Complete stacktrace when the issue occurs
ca...@google.com <ca...@google.com> #5
Thank you for posting.
Kindly provide more information regarding your issue so we can further investigate.
- Please advise what Google Maps service you are using and if you are still encountering the issue.
Complete sample request
of the API you are using that encounters issueswith all the values of the parameters used
.- The
actual
andyour expected
results. - Error message.
- Screenshots in a standard image format (e.g. PNG or JPEG) or screen recordings and steps to reproduce the issue.
ht...@googlemail.com <ht...@googlemail.com> #6
We're using the maps API through a GWT wrapper. The code we used to set the color looked like this:
```
MapTypeStyle result = MapTypeStyle.newInstance();
result.setFeatureType(featureType);
result.setElementType(MapTypeStyleElementType.ALL);
MapTypeStyler[] typeStylers = new MapTypeStyler[3];
typeStylers[0] = ColorMapTypeStyler.newColorStyler(color.getAsHtml()).cast();
result.setStylers(typeStylers);
```
This left the ``typeStylers`` array with two undefined / null values at index [1] and index [2]. This causes the maps API to throw an exception in 3.58, whereas 3.57 seems to simply ignore the extra undefined array values.
Changing the typeStylers initialization to
```
MapTypeStyler[] typeStylers = new MapTypeStyler[1];
```
solves the problem also for 3.58.
I'm not at all saying that this is something that needs fixing. Looking back, we just couldn't find anything in the release notes about this type of change. And yes, it would be good to have procedures in place where we use the next release already in a test environment to discover such "breaking" changes early on.
na...@gmail.com <na...@gmail.com> #7
I add these type of algorithms in my filtering machines but issue is they cannot control the density situation. That's why i hire
ca...@google.com <ca...@google.com> #8
Thank you for the information.
Kindly provide a sample demo with screen recording and steps to reproduce the issue for further checking.
Description
Uncaught (in promise) TypeError: can't convert undefined to object
Xua
Yua
changed
Kk
bindTo
swa
Hn
It seems that there is a "for .. of" loop that is now trying to loop over the string that specifies the water color as an RGB value ("#004DEF"). When I remove the water color style from the styles to be set, everything works fine (only that I don't have the water color I want).
What has changed, and how do I need to adjust my code?