Skip to content

Commit 7fc351f

Browse files
committed
fix to allow tileProvider setOpacity to work
1 parent eb1918b commit 7fc351f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/android/plugin/google/maps/PluginTileOverlay.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ private void createTileOverlay(final JSONArray args,
4343
String id = "tile_" + tileOverlay.getId();
4444

4545
this.objects.put(id, tileOverlay);
46-
this.objects.put("tileProvider_" + id.replace("tile_", "tileProvider_"), tileProvider);
46+
this.objects.put(id.replace("tile_", "tileProvider_"), tileProvider);
4747

4848
JSONObject result = new JSONObject();
4949
result.put("hashCode", tileOverlay.hashCode());

0 commit comments

Comments
 (0)