We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d969a2a commit 9cebd08Copy full SHA for 9cebd08
packages/google-maps/platforms/android/java/org/nativescript/plugins/google_maps/GoogleMaps.java
@@ -236,7 +236,7 @@ public View getInfoWindow(@NonNull Marker marker) {
236
public static Tile bitmapToTile(Bitmap bitmap) {
237
ByteArrayOutputStream stream = new ByteArrayOutputStream();
238
bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
239
- ByteArray data = stream.toByteArray();
+ byte[] data = stream.toByteArray();
240
return new Tile(bitmap.getWidth(), bitmap.getHeight(), data);
241
}
242
0 commit comments