We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 140029f + 7fc351f commit 4b95751Copy full SHA for 4b95751
1 file changed
src/android/plugin/google/maps/PluginTileOverlay.java
@@ -42,8 +42,8 @@ private void createTileOverlay(final JSONArray args,
42
TileOverlay tileOverlay = this.map.addTileOverlay(options);
43
String id = "tile_" + tileOverlay.getId();
44
45
- this.objects.put("tileProvider_" + id, tileProvider);
46
-
+ this.objects.put(id, tileOverlay);
+ this.objects.put(id.replace("tile_", "tileProvider_"), tileProvider);
47
48
JSONObject result = new JSONObject();
49
result.put("hashCode", tileOverlay.hashCode());
0 commit comments