@rnmapbox/maps 10.0.15-rc.0 → 10.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -229,11 +229,11 @@ abstract class RCTLayer<T : Layer?>(protected var mContext: Context) : AbstractS
|
|
|
229
229
|
mLayer?.let { layer ->
|
|
230
230
|
mAboveLayerID?.also {
|
|
231
231
|
addAbove(mapView, it)
|
|
232
|
-
} ?: { mBelowLayerID?.also {
|
|
232
|
+
} ?: run { mBelowLayerID?.also {
|
|
233
233
|
addBelow(mapView, it)
|
|
234
|
-
} ?: { mLayerIndex?.also {
|
|
234
|
+
} ?: run { mLayerIndex?.also {
|
|
235
235
|
addAtIndex(it)
|
|
236
|
-
} ?: {
|
|
236
|
+
} ?: run {
|
|
237
237
|
add ()
|
|
238
238
|
} } }
|
|
239
239
|
}
|