@rnmapbox/maps 10.0.15 → 10.1.0-beta.4

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.
Files changed (409) hide show
  1. package/README.md +3 -9
  2. package/android/build.gradle +38 -35
  3. package/android/install.md +11 -116
  4. package/android/src/main/java-v10/com/mapbox/rctmgl/RCTMGLPackage.java +109 -12
  5. package/android/src/main/java-v10/com/mapbox/rctmgl/components/AbstractEventEmitter.kt +2 -3
  6. package/android/src/main/java-v10/com/mapbox/rctmgl/components/annotation/RCTMGLPointAnnotation.kt +4 -2
  7. package/android/src/main/java-v10/com/mapbox/rctmgl/components/camera/CameraUpdateItem.kt +13 -12
  8. package/android/src/main/java-v10/com/mapbox/rctmgl/components/camera/RCTMGLCamera.kt +1 -2
  9. package/android/src/main/java-v10/com/mapbox/rctmgl/components/images/RCTMGLImage.kt +5 -3
  10. package/android/src/main/java-v10/com/mapbox/rctmgl/components/images/RCTMGLImages.kt +3 -1
  11. package/android/src/main/java-v10/com/mapbox/rctmgl/components/location/LocationComponentManager.kt +11 -9
  12. package/android/src/main/java-v10/com/mapbox/rctmgl/components/location/RCTMGLNativeUserLocation.kt +5 -3
  13. package/android/src/main/java-v10/com/mapbox/rctmgl/components/mapview/NativeMapViewModule.kt +193 -0
  14. package/android/src/main/java-v10/com/mapbox/rctmgl/components/mapview/RCTMGLAndroidTextureMapViewManager.kt +16 -2
  15. package/android/src/main/java-v10/com/mapbox/rctmgl/components/mapview/RCTMGLMapView.kt +17 -91
  16. package/android/src/main/java-v10/com/mapbox/rctmgl/components/mapview/RCTMGLMapViewManager.kt +75 -160
  17. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/RCTMGLStyle.kt +8 -5
  18. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/RCTMGLStyleFactory.kt +3669 -0
  19. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/RCTMGLStyleValue.kt +9 -3
  20. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/atmosphere/RCTMGLAtmosphere.kt +9 -5
  21. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLBackgroundLayer.kt +9 -4
  22. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLCircleLayer.kt +7 -1
  23. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillExtrusionLayer.kt +9 -4
  24. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillLayer.kt +7 -1
  25. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLHeatmapLayer.kt +9 -1
  26. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLLineLayer.kt +6 -1
  27. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLRasterLayer.kt +6 -1
  28. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLSkyLayer.kt +9 -1
  29. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/layers/RCTMGLSymbolLayer.kt +9 -1
  30. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/light/RCTMGLLight.kt +3 -3
  31. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterDemSource.kt +2 -0
  32. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSource.kt +2 -0
  33. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/sources/RCTMGLVectorSource.kt +2 -0
  34. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/terrain/RCTMGLTerrain.kt +7 -5
  35. package/android/src/main/java-v10/com/mapbox/rctmgl/events/LocationEvent.kt +14 -6
  36. package/android/src/main/java-v10/com/mapbox/rctmgl/location/LocationManager.kt +23 -32
  37. package/android/src/main/java-v10/com/mapbox/rctmgl/modules/CustomHttpHeaders.kt +9 -1
  38. package/android/src/main/java-v10/com/mapbox/rctmgl/modules/RCTMGLLocationModule.kt +3 -4
  39. package/android/src/main/java-v10/com/mapbox/rctmgl/modules/RCTMGLModule.kt +4 -5
  40. package/android/src/main/java-v10/com/mapbox/rctmgl/modules/RCTMGLOfflineModule.kt +9 -7
  41. package/android/src/main/java-v10/com/mapbox/rctmgl/modules/RCTMGLSnapshotModule.kt +124 -0
  42. package/android/src/main/java-v10/com/mapbox/rctmgl/utils/BitmapUtils.kt +174 -0
  43. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rctmgl/v11compat/Annotation.kt +4 -0
  44. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rctmgl/v11compat/Event.kt +17 -0
  45. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rctmgl/v11compat/Feature.kt +10 -0
  46. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rctmgl/v11compat/HttpInterceptor.kt +22 -0
  47. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rctmgl/v11compat/Image.kt +29 -0
  48. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rctmgl/v11compat/Light.kt +15 -0
  49. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rctmgl/v11compat/Location.kt +54 -0
  50. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rctmgl/v11compat/MapboxMap.kt +31 -0
  51. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rctmgl/v11compat/OfflineManager.kt +19 -0
  52. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rctmgl/v11compat/OrnamentSettings.kt +96 -0
  53. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rctmgl/v11compat/ResourceOption.kt +12 -0
  54. package/android/src/main/mapbox-v11-compat/v10/com/mapbox/rctmgl/v11compat/Snapshot.kt +28 -0
  55. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rctmgl/v11compat/Annotation.kt +4 -0
  56. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rctmgl/v11compat/Event.kt +342 -0
  57. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rctmgl/v11compat/Feature.kt +16 -0
  58. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rctmgl/v11compat/HttpInterceptor.kt +21 -0
  59. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rctmgl/v11compat/Image.kt +40 -0
  60. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rctmgl/v11compat/Light.kt +15 -0
  61. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rctmgl/v11compat/Location.kt +58 -0
  62. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rctmgl/v11compat/MapboxMap.kt +37 -0
  63. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rctmgl/v11compat/OfflineManager.kt +12 -0
  64. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rctmgl/v11compat/OrnamentSettings.kt +96 -0
  65. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rctmgl/v11compat/ResourceOption.kt +14 -0
  66. package/android/src/main/mapbox-v11-compat/v11/com/mapbox/rctmgl/v11compat/Snapshot.kt +22 -0
  67. package/android/src/main/old-arch/com/facebook/react/viewmanagers/MBXAndroidTextureMapViewManagerDelegate.java +89 -0
  68. package/android/src/main/old-arch/com/facebook/react/viewmanagers/MBXAndroidTextureMapViewManagerInterface.java +37 -0
  69. package/android/src/main/old-arch/com/facebook/react/viewmanagers/MBXMapViewManagerDelegate.java +89 -0
  70. package/android/src/main/old-arch/com/facebook/react/viewmanagers/MBXMapViewManagerInterface.java +37 -0
  71. package/android/src/main/old-arch/com/mapbox/rctmgl/NativeMapViewModuleSpec.java +88 -0
  72. package/ios/RCTMGL-v10/CustomHttpHeaders.swift +18 -0
  73. package/ios/RCTMGL-v10/MBXMapViewComponentView.h +18 -0
  74. package/ios/RCTMGL-v10/MBXMapViewComponentView.mm +203 -0
  75. package/ios/RCTMGL-v10/MBXMapViewManager.m +37 -0
  76. package/ios/RCTMGL-v10/MBXMapViewManager.swift +250 -0
  77. package/ios/RCTMGL-v10/MBXMapViewModule.h +18 -0
  78. package/ios/RCTMGL-v10/MBXMapViewModule.mm +167 -0
  79. package/ios/RCTMGL-v10/MGLModule.swift +15 -1
  80. package/ios/RCTMGL-v10/MGLSnapshotModule.swift +7 -1
  81. package/ios/RCTMGL-v10/RCTMGLAtmosphere.swift +4 -0
  82. package/ios/RCTMGL-v10/RCTMGLBackgroundLayer.swift +2 -1
  83. package/ios/RCTMGL-v10/RCTMGLCamera.swift +23 -0
  84. package/ios/RCTMGL-v10/RCTMGLCircleLayer.swift +4 -0
  85. package/ios/RCTMGL-v10/RCTMGLFillExtrustionLayer.swift +4 -0
  86. package/ios/RCTMGL-v10/RCTMGLFillLayer.swift +4 -0
  87. package/ios/RCTMGL-v10/RCTMGLHeatmapLayer.swift +4 -1
  88. package/ios/RCTMGL-v10/RCTMGLImageSource.swift +4 -0
  89. package/ios/RCTMGL-v10/RCTMGLImages.swift +14 -2
  90. package/ios/RCTMGL-v10/RCTMGLLayer.swift +35 -11
  91. package/ios/RCTMGL-v10/RCTMGLLight.swift +14 -4
  92. package/ios/RCTMGL-v10/RCTMGLLineLayer.swift +4 -0
  93. package/ios/RCTMGL-v10/RCTMGLLocationModule.swift +65 -12
  94. package/ios/RCTMGL-v10/RCTMGLLocationModuleV11.swift +32 -0
  95. package/ios/RCTMGL-v10/RCTMGLMapView.swift +116 -28
  96. package/ios/RCTMGL-v10/RCTMGLNativeUserLocation.swift +4 -0
  97. package/ios/RCTMGL-v10/RCTMGLOfflineModule.swift +17 -0
  98. package/ios/RCTMGL-v10/RCTMGLRasterDemSource.swift +4 -0
  99. package/ios/RCTMGL-v10/RCTMGLRasterLayer.swift +4 -0
  100. package/ios/RCTMGL-v10/RCTMGLRasterSource.swift +4 -0
  101. package/ios/RCTMGL-v10/RCTMGLShapeSource.swift +65 -3
  102. package/ios/RCTMGL-v10/RCTMGLSource.swift +4 -0
  103. package/ios/RCTMGL-v10/RCTMGLStyleValue.swift +60 -1
  104. package/ios/RCTMGL-v10/RCTMGLSymbolLayer.swift +4 -0
  105. package/ios/RCTMGL-v10/RCTMGLVectorSource.swift +4 -0
  106. package/ios/RCTMGL-v10/rnmapbox_maps.h +1 -0
  107. package/ios/install.md +28 -39
  108. package/lib/commonjs/components/MapView.js +47 -11
  109. package/lib/commonjs/components/MapView.js.map +1 -1
  110. package/lib/commonjs/specs/MBXAndroidTextureMapViewNativeComponent.js +13 -0
  111. package/lib/commonjs/specs/MBXAndroidTextureMapViewNativeComponent.js.map +1 -0
  112. package/lib/commonjs/specs/MBXMapViewNativeComponent.js +11 -0
  113. package/lib/commonjs/specs/MBXMapViewNativeComponent.js.map +1 -0
  114. package/lib/commonjs/specs/NativeMapViewModule.js +11 -0
  115. package/lib/commonjs/specs/NativeMapViewModule.js.map +1 -0
  116. package/lib/commonjs/specs/codegenUtils.js +2 -0
  117. package/lib/commonjs/specs/codegenUtils.js.map +1 -0
  118. package/lib/module/components/MapView.js +47 -10
  119. package/lib/module/components/MapView.js.map +1 -1
  120. package/lib/module/specs/MBXAndroidTextureMapViewNativeComponent.js +5 -0
  121. package/lib/module/specs/MBXAndroidTextureMapViewNativeComponent.js.map +1 -0
  122. package/lib/module/specs/MBXMapViewNativeComponent.js +3 -0
  123. package/lib/module/specs/MBXMapViewNativeComponent.js.map +1 -0
  124. package/lib/module/specs/NativeMapViewModule.js +5 -0
  125. package/lib/module/specs/NativeMapViewModule.js.map +1 -0
  126. package/lib/module/specs/codegenUtils.js +2 -0
  127. package/lib/module/specs/codegenUtils.js.map +1 -0
  128. package/lib/typescript/components/MapView.d.ts +13 -3
  129. package/lib/typescript/components/MapView.d.ts.map +1 -1
  130. package/lib/typescript/specs/MBXAndroidTextureMapViewNativeComponent.d.ts +52 -0
  131. package/lib/typescript/specs/MBXAndroidTextureMapViewNativeComponent.d.ts.map +1 -0
  132. package/lib/typescript/specs/MBXMapViewNativeComponent.d.ts +52 -0
  133. package/lib/typescript/specs/MBXMapViewNativeComponent.d.ts.map +1 -0
  134. package/lib/typescript/specs/NativeMapViewModule.d.ts +21 -0
  135. package/lib/typescript/specs/NativeMapViewModule.d.ts.map +1 -0
  136. package/lib/typescript/specs/codegenUtils.d.ts +2 -0
  137. package/lib/typescript/specs/codegenUtils.d.ts.map +1 -0
  138. package/package.json +9 -1
  139. package/rnmapbox-maps.podspec +34 -72
  140. package/setup-jest.js +16 -0
  141. package/src/components/MapView.tsx +56 -12
  142. package/src/specs/MBXAndroidTextureMapViewNativeComponent.ts +63 -0
  143. package/src/specs/MBXMapViewNativeComponent.ts +63 -0
  144. package/src/specs/NativeMapViewModule.ts +54 -0
  145. package/src/specs/codegenUtils.ts +4 -0
  146. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/RCTMGLPackage.java +0 -99
  147. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/AbstractEvent.java +0 -35
  148. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/AbstractEventEmitter.java +0 -80
  149. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/AbstractMapFeature.java +0 -19
  150. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/MarkerView.java +0 -23
  151. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/MarkerViewManager.java +0 -69
  152. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLCallout.java +0 -15
  153. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLCalloutManager.java +0 -22
  154. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLMarkerView.java +0 -112
  155. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLMarkerViewManager.java +0 -45
  156. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLPointAnnotation.java +0 -360
  157. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/annotation/RCTMGLPointAnnotationManager.java +0 -88
  158. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/CameraStop.java +0 -249
  159. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/CameraUpdateItem.java +0 -125
  160. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/CameraUpdateQueue.java +0 -73
  161. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/RCTMGLCamera.java +0 -530
  162. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/RCTMGLCameraManager.java +0 -101
  163. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/camera/constants/CameraMode.java +0 -22
  164. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/images/RCTMGLImages.java +0 -234
  165. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/images/RCTMGLImagesManager.java +0 -103
  166. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/location/LocationComponentManager.java +0 -149
  167. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/location/RCTMGLNativeUserLocation.java +0 -67
  168. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/location/RCTMGLNativeUserLocationManager.java +0 -35
  169. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/LayerSourceInfo.java +0 -59
  170. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/RCTMGLAndroidTextureMapView.java +0 -16
  171. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/RCTMGLAndroidTextureMapViewManager.java +0 -31
  172. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/RCTMGLMapView.java +0 -1528
  173. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/RCTMGLMapViewManager.java +0 -355
  174. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/mapview/helpers/CameraChangeTracker.java +0 -41
  175. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/RCTMGLStyle.java +0 -83
  176. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/RCTMGLStyleFactory.java +0 -2220
  177. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/RCTMGLStyleFunctionParser.java +0 -108
  178. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/RCTMGLStyleValue.java +0 -216
  179. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTLayer.java +0 -287
  180. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLBackgroundLayer.java +0 -27
  181. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLBackgroundLayerManager.java +0 -64
  182. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLCircleLayer.java +0 -55
  183. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLCircleLayerManager.java +0 -77
  184. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillExtrusionLayer.java +0 -55
  185. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillExtrusionLayerManager.java +0 -80
  186. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillLayer.java +0 -55
  187. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLFillLayerManager.java +0 -80
  188. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLHeatmapLayer.java +0 -55
  189. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLHeatmapLayerManager.java +0 -77
  190. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLLineLayer.java +0 -55
  191. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLLineLayerManager.java +0 -79
  192. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLRasterLayer.java +0 -27
  193. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLRasterLayerManager.java +0 -64
  194. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLSymbolLayer.java +0 -55
  195. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/layers/RCTMGLSymbolLayerManager.java +0 -75
  196. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/light/RCTMGLLight.java +0 -65
  197. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/light/RCTMGLLightManager.java +0 -29
  198. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLImageSource.java +0 -81
  199. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLImageSourceManager.java +0 -72
  200. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterSource.java +0 -45
  201. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLRasterSourceManager.java +0 -44
  202. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSource.java +0 -316
  203. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSourceManager.java +0 -253
  204. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLTileSource.java +0 -97
  205. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLTileSourceManager.java +0 -80
  206. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLVectorSource.java +0 -64
  207. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTMGLVectorSourceManager.java +0 -84
  208. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/components/styles/sources/RCTSource.java +0 -244
  209. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/AbstractEvent.java +0 -66
  210. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/AndroidCallbackEvent.java +0 -38
  211. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/EventEmitter.java +0 -45
  212. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/FeatureClickEvent.java +0 -79
  213. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/IEvent.java +0 -18
  214. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/ImageMissingEvent.java +0 -42
  215. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/LocationEvent.java +0 -100
  216. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/MapChangeEvent.java +0 -47
  217. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/MapClickEvent.java +0 -51
  218. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/MapUserTrackingModeEvent.java +0 -36
  219. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/OfflineEvent.java +0 -29
  220. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/PointAnnotationClickEvent.java +0 -46
  221. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/PointAnnotationDragEvent.java +0 -51
  222. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/constants/EventKeys.java +0 -39
  223. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/events/constants/EventTypes.java +0 -51
  224. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/http/CustomHeadersInterceptor.java +0 -38
  225. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/location/LocationManager.java +0 -147
  226. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/location/UserLocation.java +0 -63
  227. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/location/UserLocationVerticalAlignment.java +0 -11
  228. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/location/UserTrackingMode.java +0 -63
  229. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/location/UserTrackingState.java +0 -19
  230. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/modules/RCTMGLLocationModule.java +0 -164
  231. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/modules/RCTMGLLogging.java +0 -140
  232. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/modules/RCTMGLModule.java +0 -377
  233. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/modules/RCTMGLOfflineModule.java +0 -597
  234. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/modules/RCTMGLSnapshotModule.java +0 -139
  235. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/BitmapUtils.java +0 -129
  236. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/ClusterPropertyEntry.java +0 -13
  237. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/ConvertUtils.java +0 -257
  238. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/DownloadMapImageTask.java +0 -159
  239. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/ExpressionParser.java +0 -74
  240. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/GeoJSONUtils.java +0 -209
  241. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/GeoViewport.java +0 -38
  242. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/ImageEntry.java +0 -25
  243. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/ResourceUtils.java +0 -30
  244. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/SimpleEventCallback.java +0 -30
  245. package/android/src/main/java-mapboxgl/common/com/mapbox/rctmgl/utils/SphericalMercator.java +0 -69
  246. package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/InstanceManagerImpl.java +0 -35
  247. package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/LocationEngineCallbackImpl.java +0 -12
  248. package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/LocationEngineResultImpl.java +0 -18
  249. package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/LocationManagerImpl.java +0 -64
  250. package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/PermissionsManagerImpl.java +0 -10
  251. package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/SymbolClickListenerImpl.java +0 -18
  252. package/android/src/main/java-mapboxgl/mapbox/com/mapbox/rctmgl/impl/TelemetryImpl.java +0 -11
  253. package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/InstanceManagerImpl.java +0 -42
  254. package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/LocationEngineCallbackImpl.java +0 -12
  255. package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/LocationEngineResultImpl.java +0 -18
  256. package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/LocationManagerImpl.java +0 -64
  257. package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/PermissionsManagerImpl.java +0 -10
  258. package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/SymbolClickListenerImpl.java +0 -18
  259. package/android/src/main/java-mapboxgl/maplibre/com/mapbox/rctmgl/impl/TelemetryImpl.java +0 -7
  260. package/android/src/main/java-v10/com/mapbox/rctmgl/components/styles/RCTMGLStyleFactory.java +0 -2586
  261. package/android/src/main/java-v10/com/mapbox/rctmgl/modules/RCTMGLSnapshotModule.java +0 -151
  262. package/android/src/main/java-v10/com/mapbox/rctmgl/utils/BitmapUtils.java +0 -183
  263. package/ios/RCTMGL/CameraMode.h +0 -18
  264. package/ios/RCTMGL/CameraMode.m +0 -18
  265. package/ios/RCTMGL/CameraStop.h +0 -26
  266. package/ios/RCTMGL/CameraStop.m +0 -83
  267. package/ios/RCTMGL/CameraUpdateItem.h +0 -18
  268. package/ios/RCTMGL/CameraUpdateItem.m +0 -178
  269. package/ios/RCTMGL/CameraUpdateQueue.h +0 -21
  270. package/ios/RCTMGL/CameraUpdateQueue.m +0 -74
  271. package/ios/RCTMGL/FilterParser.h +0 -14
  272. package/ios/RCTMGL/FilterParser.m +0 -22
  273. package/ios/RCTMGL/MGLCustomHeaders.h +0 -20
  274. package/ios/RCTMGL/MGLCustomHeaders.m +0 -98
  275. package/ios/RCTMGL/MGLFaux3DUserLocationAnnotationView.h +0 -23
  276. package/ios/RCTMGL/MGLFaux3DUserLocationAnnotationView.m +0 -474
  277. package/ios/RCTMGL/MGLModule.h +0 -13
  278. package/ios/RCTMGL/MGLModule.m +0 -336
  279. package/ios/RCTMGL/MGLOfflineModule.h +0 -19
  280. package/ios/RCTMGL/MGLOfflineModule.m +0 -537
  281. package/ios/RCTMGL/MGLSnapshotModule.h +0 -13
  282. package/ios/RCTMGL/MGLSnapshotModule.m +0 -80
  283. package/ios/RCTMGL/MGLUserLocationHeadingArrowLayer.h +0 -11
  284. package/ios/RCTMGL/MGLUserLocationHeadingArrowLayer.m +0 -57
  285. package/ios/RCTMGL/MGLUserLocationHeadingBeamLayer.h +0 -11
  286. package/ios/RCTMGL/MGLUserLocationHeadingBeamLayer.m +0 -102
  287. package/ios/RCTMGL/MGLUserLocationHeadingIndicator.h +0 -10
  288. package/ios/RCTMGL/RCTConvert+Mapbox.h +0 -16
  289. package/ios/RCTMGL/RCTConvert+Mapbox.m +0 -32
  290. package/ios/RCTMGL/RCTMGL.h +0 -13
  291. package/ios/RCTMGL/RCTMGL.m +0 -13
  292. package/ios/RCTMGL/RCTMGLBackgroundLayer.h +0 -14
  293. package/ios/RCTMGL/RCTMGLBackgroundLayer.m +0 -27
  294. package/ios/RCTMGL/RCTMGLBackgroundLayerManager.h +0 -13
  295. package/ios/RCTMGL/RCTMGLBackgroundLayerManager.m +0 -35
  296. package/ios/RCTMGL/RCTMGLCallout.h +0 -15
  297. package/ios/RCTMGL/RCTMGLCallout.m +0 -74
  298. package/ios/RCTMGL/RCTMGLCalloutManager.h +0 -13
  299. package/ios/RCTMGL/RCTMGLCalloutManager.m +0 -21
  300. package/ios/RCTMGL/RCTMGLCamera.h +0 -39
  301. package/ios/RCTMGL/RCTMGLCamera.m +0 -258
  302. package/ios/RCTMGL/RCTMGLCameraManager.h +0 -13
  303. package/ios/RCTMGL/RCTMGLCameraManager.m +0 -52
  304. package/ios/RCTMGL/RCTMGLCircleLayer.h +0 -13
  305. package/ios/RCTMGL/RCTMGLCircleLayer.m +0 -34
  306. package/ios/RCTMGL/RCTMGLCircleLayerManager.h +0 -13
  307. package/ios/RCTMGL/RCTMGLCircleLayerManager.m +0 -39
  308. package/ios/RCTMGL/RCTMGLEvent.h +0 -21
  309. package/ios/RCTMGL/RCTMGLEvent.m +0 -47
  310. package/ios/RCTMGL/RCTMGLEventProtocol.h +0 -16
  311. package/ios/RCTMGL/RCTMGLEventTypes.h +0 -50
  312. package/ios/RCTMGL/RCTMGLEventTypes.m +0 -49
  313. package/ios/RCTMGL/RCTMGLFillExtrusionLayer.h +0 -14
  314. package/ios/RCTMGL/RCTMGLFillExtrusionLayer.m +0 -32
  315. package/ios/RCTMGL/RCTMGLFillExtrusionLayerManager.h +0 -13
  316. package/ios/RCTMGL/RCTMGLFillExtrusionLayerManager.m +0 -39
  317. package/ios/RCTMGL/RCTMGLFillLayer.h +0 -14
  318. package/ios/RCTMGL/RCTMGLFillLayer.m +0 -33
  319. package/ios/RCTMGL/RCTMGLFillLayerManager.h +0 -13
  320. package/ios/RCTMGL/RCTMGLFillLayerManager.m +0 -37
  321. package/ios/RCTMGL/RCTMGLHeatmapLayer.h +0 -12
  322. package/ios/RCTMGL/RCTMGLHeatmapLayer.m +0 -30
  323. package/ios/RCTMGL/RCTMGLHeatmapLayerManager.h +0 -12
  324. package/ios/RCTMGL/RCTMGLHeatmapLayerManager.m +0 -38
  325. package/ios/RCTMGL/RCTMGLImageQueue.h +0 -19
  326. package/ios/RCTMGL/RCTMGLImageQueue.m +0 -57
  327. package/ios/RCTMGL/RCTMGLImageQueueOperation.h +0 -17
  328. package/ios/RCTMGL/RCTMGLImageQueueOperation.m +0 -138
  329. package/ios/RCTMGL/RCTMGLImageSource.h +0 -16
  330. package/ios/RCTMGL/RCTMGLImageSource.m +0 -60
  331. package/ios/RCTMGL/RCTMGLImageSourceManager.h +0 -13
  332. package/ios/RCTMGL/RCTMGLImageSourceManager.m +0 -25
  333. package/ios/RCTMGL/RCTMGLImages.h +0 -25
  334. package/ios/RCTMGL/RCTMGLImages.m +0 -126
  335. package/ios/RCTMGL/RCTMGLImagesManager.h +0 -5
  336. package/ios/RCTMGL/RCTMGLImagesManager.m +0 -21
  337. package/ios/RCTMGL/RCTMGLLayer.h +0 -52
  338. package/ios/RCTMGL/RCTMGLLayer.m +0 -236
  339. package/ios/RCTMGL/RCTMGLLight.h +0 -17
  340. package/ios/RCTMGL/RCTMGLLight.m +0 -46
  341. package/ios/RCTMGL/RCTMGLLightManager.h +0 -13
  342. package/ios/RCTMGL/RCTMGLLightManager.m +0 -23
  343. package/ios/RCTMGL/RCTMGLLineLayer.h +0 -14
  344. package/ios/RCTMGL/RCTMGLLineLayer.m +0 -33
  345. package/ios/RCTMGL/RCTMGLLineLayerManager.h +0 -13
  346. package/ios/RCTMGL/RCTMGLLineLayerManager.m +0 -40
  347. package/ios/RCTMGL/RCTMGLLocation.h +0 -19
  348. package/ios/RCTMGL/RCTMGLLocation.m +0 -32
  349. package/ios/RCTMGL/RCTMGLLocationManager.h +0 -30
  350. package/ios/RCTMGL/RCTMGLLocationManager.m +0 -180
  351. package/ios/RCTMGL/RCTMGLLocationManagerDelegate.h +0 -20
  352. package/ios/RCTMGL/RCTMGLLocationModule.h +0 -15
  353. package/ios/RCTMGL/RCTMGLLocationModule.m +0 -99
  354. package/ios/RCTMGL/RCTMGLLogging.h +0 -18
  355. package/ios/RCTMGL/RCTMGLLogging.m +0 -132
  356. package/ios/RCTMGL/RCTMGLMapTouchEvent.h +0 -25
  357. package/ios/RCTMGL/RCTMGLMapTouchEvent.m +0 -77
  358. package/ios/RCTMGL/RCTMGLMapView.h +0 -91
  359. package/ios/RCTMGL/RCTMGLMapView.m +0 -536
  360. package/ios/RCTMGL/RCTMGLMapViewManager.h +0 -17
  361. package/ios/RCTMGL/RCTMGLMapViewManager.m +0 -625
  362. package/ios/RCTMGL/RCTMGLNativeUserLocation.h +0 -18
  363. package/ios/RCTMGL/RCTMGLNativeUserLocation.m +0 -49
  364. package/ios/RCTMGL/RCTMGLNativeUserLocationManager.h +0 -5
  365. package/ios/RCTMGL/RCTMGLNativeUserLocationManager.m +0 -25
  366. package/ios/RCTMGL/RCTMGLPointAnnotation.h +0 -41
  367. package/ios/RCTMGL/RCTMGLPointAnnotation.m +0 -251
  368. package/ios/RCTMGL/RCTMGLPointAnnotationManager.h +0 -13
  369. package/ios/RCTMGL/RCTMGLPointAnnotationManager.m +0 -36
  370. package/ios/RCTMGL/RCTMGLRasterLayer.h +0 -14
  371. package/ios/RCTMGL/RCTMGLRasterLayer.m +0 -30
  372. package/ios/RCTMGL/RCTMGLRasterLayerManager.h +0 -13
  373. package/ios/RCTMGL/RCTMGLRasterLayerManager.m +0 -35
  374. package/ios/RCTMGL/RCTMGLRasterSource.h +0 -16
  375. package/ios/RCTMGL/RCTMGLRasterSource.m +0 -35
  376. package/ios/RCTMGL/RCTMGLRasterSourceManager.h +0 -13
  377. package/ios/RCTMGL/RCTMGLRasterSourceManager.m +0 -32
  378. package/ios/RCTMGL/RCTMGLShapeSource.h +0 -53
  379. package/ios/RCTMGL/RCTMGLShapeSource.m +0 -194
  380. package/ios/RCTMGL/RCTMGLShapeSourceManager.h +0 -14
  381. package/ios/RCTMGL/RCTMGLShapeSourceManager.m +0 -206
  382. package/ios/RCTMGL/RCTMGLSource.h +0 -35
  383. package/ios/RCTMGL/RCTMGLSource.m +0 -143
  384. package/ios/RCTMGL/RCTMGLStyle.h +0 -217
  385. package/ios/RCTMGL/RCTMGLStyle.m +0 -1640
  386. package/ios/RCTMGL/RCTMGLStyleValue.h +0 -27
  387. package/ios/RCTMGL/RCTMGLStyleValue.m +0 -167
  388. package/ios/RCTMGL/RCTMGLSymbolLayer.h +0 -19
  389. package/ios/RCTMGL/RCTMGLSymbolLayer.m +0 -121
  390. package/ios/RCTMGL/RCTMGLSymbolLayerManager.h +0 -13
  391. package/ios/RCTMGL/RCTMGLSymbolLayerManager.m +0 -40
  392. package/ios/RCTMGL/RCTMGLTileSource.h +0 -22
  393. package/ios/RCTMGL/RCTMGLTileSource.m +0 -31
  394. package/ios/RCTMGL/RCTMGLUserLocation.h +0 -15
  395. package/ios/RCTMGL/RCTMGLUserLocation.m +0 -38
  396. package/ios/RCTMGL/RCTMGLUtils.h +0 -31
  397. package/ios/RCTMGL/RCTMGLUtils.m +0 -218
  398. package/ios/RCTMGL/RCTMGLVectorLayer.h +0 -15
  399. package/ios/RCTMGL/RCTMGLVectorLayer.m +0 -59
  400. package/ios/RCTMGL/RCTMGLVectorSource.h +0 -16
  401. package/ios/RCTMGL/RCTMGLVectorSource.m +0 -28
  402. package/ios/RCTMGL/RCTMGLVectorSourceManager.h +0 -14
  403. package/ios/RCTMGL/RCTMGLVectorSourceManager.m +0 -79
  404. package/ios/RCTMGL/RNMBImageUtils.h +0 -17
  405. package/ios/RCTMGL/RNMBImageUtils.m +0 -31
  406. package/ios/RCTMGL/ViewManager.h +0 -16
  407. package/ios/RCTMGL/ViewManager.m +0 -63
  408. package/ios/RCTMGL-v10/RCTMGLMapViewManager.m +0 -107
  409. package/ios/RCTMGL-v10/RCTMGLMapViewManager.swift +0 -285
@@ -1,217 +0,0 @@
1
- // DO NOT MODIFY
2
- // THIS FILE IS AUTOGENERATED
3
-
4
- #import "RCTMGLStyle.h"
5
- #import "RCTMGLStyleValue.h"
6
- #import <React/RCTBridge.h>
7
-
8
- @import Mapbox;
9
-
10
- @interface RCTMGLStyle : NSObject
11
-
12
- @property (nonatomic, weak) RCTBridge *bridge;
13
- @property (nonatomic, strong) MGLStyle *style;
14
-
15
- - (id)initWithMGLStyle:(MGLStyle*)mglStyle;
16
-
17
- - (void)fillLayer:(MGLFillStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
18
- - (void)lineLayer:(MGLLineStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
19
- - (void)symbolLayer:(MGLSymbolStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
20
- - (void)circleLayer:(MGLCircleStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
21
- - (void)heatmapLayer:(MGLHeatmapStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
22
- - (void)fillExtrusionLayer:(MGLFillExtrusionStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
23
- - (void)rasterLayer:(MGLRasterStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
24
- - (void)hillshadeLayer:(MGLHillshadeStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
25
- - (void)backgroundLayer:(MGLBackgroundStyleLayer *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
26
- - (void)lightLayer:(MGLLight *)layer withReactStyle:(NSDictionary *)reactStyle isValid:(BOOL (^)(void)) isValid;
27
-
28
- - (void)setFillSortKey:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
29
- - (void)setFillStyleLayerVisibility:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
30
- - (void)setFillAntialias:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
31
- - (void)setFillOpacity:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
32
- - (void)setFillOpacityTransition:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
33
- - (void)setFillColor:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
34
- - (void)setFillColorTransition:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
35
- - (void)setFillOutlineColor:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
36
- - (void)setFillOutlineColorTransition:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
37
- - (void)setFillTranslate:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
38
- - (void)setFillTranslateTransition:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
39
- - (void)setFillTranslateAnchor:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
40
- - (void)setFillPattern:(MGLFillStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
41
- - (void)setLineCap:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
42
- - (void)setLineJoin:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
43
- - (void)setLineMiterLimit:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
44
- - (void)setLineRoundLimit:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
45
- - (void)setLineSortKey:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
46
- - (void)setLineStyleLayerVisibility:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
47
- - (void)setLineOpacity:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
48
- - (void)setLineOpacityTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
49
- - (void)setLineColor:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
50
- - (void)setLineColorTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
51
- - (void)setLineTranslate:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
52
- - (void)setLineTranslateTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
53
- - (void)setLineTranslateAnchor:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
54
- - (void)setLineWidth:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
55
- - (void)setLineWidthTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
56
- - (void)setLineGapWidth:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
57
- - (void)setLineGapWidthTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
58
- - (void)setLineOffset:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
59
- - (void)setLineOffsetTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
60
- - (void)setLineBlur:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
61
- - (void)setLineBlurTransition:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
62
- - (void)setLineDasharray:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
63
- - (void)setLinePattern:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
64
- - (void)setLineGradient:(MGLLineStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
65
- - (void)setSymbolPlacement:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
66
- - (void)setSymbolSpacing:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
67
- - (void)setSymbolAvoidEdges:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
68
- - (void)setSymbolSortKey:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
69
- - (void)setSymbolZOrder:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
70
- - (void)setIconAllowOverlap:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
71
- - (void)setIconIgnorePlacement:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
72
- - (void)setIconOptional:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
73
- - (void)setIconRotationAlignment:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
74
- - (void)setIconSize:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
75
- - (void)setIconTextFit:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
76
- - (void)setIconTextFitPadding:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
77
- - (void)setIconImage:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
78
- - (void)setIconRotate:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
79
- - (void)setIconPadding:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
80
- - (void)setIconKeepUpright:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
81
- - (void)setIconOffset:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
82
- - (void)setIconAnchor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
83
- - (void)setIconPitchAlignment:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
84
- - (void)setTextPitchAlignment:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
85
- - (void)setTextRotationAlignment:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
86
- - (void)setTextField:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
87
- - (void)setTextFont:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
88
- - (void)setTextSize:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
89
- - (void)setTextMaxWidth:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
90
- - (void)setTextLineHeight:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
91
- - (void)setTextLetterSpacing:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
92
- - (void)setTextJustify:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
93
- - (void)setTextRadialOffset:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
94
- - (void)setTextVariableAnchor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
95
- - (void)setTextAnchor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
96
- - (void)setTextMaxAngle:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
97
- - (void)setTextWritingMode:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
98
- - (void)setTextRotate:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
99
- - (void)setTextPadding:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
100
- - (void)setTextKeepUpright:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
101
- - (void)setTextTransform:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
102
- - (void)setTextOffset:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
103
- - (void)setTextAllowOverlap:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
104
- - (void)setTextIgnorePlacement:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
105
- - (void)setTextOptional:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
106
- - (void)setSymbolStyleLayerVisibility:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
107
- - (void)setIconOpacity:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
108
- - (void)setIconOpacityTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
109
- - (void)setIconColor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
110
- - (void)setIconColorTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
111
- - (void)setIconHaloColor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
112
- - (void)setIconHaloColorTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
113
- - (void)setIconHaloWidth:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
114
- - (void)setIconHaloWidthTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
115
- - (void)setIconHaloBlur:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
116
- - (void)setIconHaloBlurTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
117
- - (void)setIconTranslate:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
118
- - (void)setIconTranslateTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
119
- - (void)setIconTranslateAnchor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
120
- - (void)setTextOpacity:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
121
- - (void)setTextOpacityTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
122
- - (void)setTextColor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
123
- - (void)setTextColorTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
124
- - (void)setTextHaloColor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
125
- - (void)setTextHaloColorTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
126
- - (void)setTextHaloWidth:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
127
- - (void)setTextHaloWidthTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
128
- - (void)setTextHaloBlur:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
129
- - (void)setTextHaloBlurTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
130
- - (void)setTextTranslate:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
131
- - (void)setTextTranslateTransition:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
132
- - (void)setTextTranslateAnchor:(MGLSymbolStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
133
- - (void)setCircleStyleLayerVisibility:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
134
- - (void)setCircleRadius:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
135
- - (void)setCircleRadiusTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
136
- - (void)setCircleColor:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
137
- - (void)setCircleColorTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
138
- - (void)setCircleBlur:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
139
- - (void)setCircleBlurTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
140
- - (void)setCircleOpacity:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
141
- - (void)setCircleOpacityTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
142
- - (void)setCircleTranslate:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
143
- - (void)setCircleTranslateTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
144
- - (void)setCircleTranslateAnchor:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
145
- - (void)setCirclePitchScale:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
146
- - (void)setCirclePitchAlignment:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
147
- - (void)setCircleStrokeWidth:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
148
- - (void)setCircleStrokeWidthTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
149
- - (void)setCircleStrokeColor:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
150
- - (void)setCircleStrokeColorTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
151
- - (void)setCircleStrokeOpacity:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
152
- - (void)setCircleStrokeOpacityTransition:(MGLCircleStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
153
- - (void)setHeatmapStyleLayerVisibility:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
154
- - (void)setHeatmapRadius:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
155
- - (void)setHeatmapRadiusTransition:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
156
- - (void)setHeatmapWeight:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
157
- - (void)setHeatmapIntensity:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
158
- - (void)setHeatmapIntensityTransition:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
159
- - (void)setHeatmapColor:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
160
- - (void)setHeatmapOpacity:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
161
- - (void)setHeatmapOpacityTransition:(MGLHeatmapStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
162
- - (void)setFillExtrusionStyleLayerVisibility:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
163
- - (void)setFillExtrusionOpacity:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
164
- - (void)setFillExtrusionOpacityTransition:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
165
- - (void)setFillExtrusionColor:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
166
- - (void)setFillExtrusionColorTransition:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
167
- - (void)setFillExtrusionTranslate:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
168
- - (void)setFillExtrusionTranslateTransition:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
169
- - (void)setFillExtrusionTranslateAnchor:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
170
- - (void)setFillExtrusionPattern:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
171
- - (void)setFillExtrusionHeight:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
172
- - (void)setFillExtrusionHeightTransition:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
173
- - (void)setFillExtrusionBase:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
174
- - (void)setFillExtrusionBaseTransition:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
175
- - (void)setFillExtrusionVerticalGradient:(MGLFillExtrusionStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
176
- - (void)setRasterStyleLayerVisibility:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
177
- - (void)setRasterOpacity:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
178
- - (void)setRasterOpacityTransition:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
179
- - (void)setRasterHueRotate:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
180
- - (void)setRasterHueRotateTransition:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
181
- - (void)setRasterBrightnessMin:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
182
- - (void)setRasterBrightnessMinTransition:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
183
- - (void)setRasterBrightnessMax:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
184
- - (void)setRasterBrightnessMaxTransition:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
185
- - (void)setRasterSaturation:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
186
- - (void)setRasterSaturationTransition:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
187
- - (void)setRasterContrast:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
188
- - (void)setRasterContrastTransition:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
189
- - (void)setRasterResampling:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
190
- - (void)setRasterFadeDuration:(MGLRasterStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
191
- - (void)setHillshadeStyleLayerVisibility:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
192
- - (void)setHillshadeIlluminationDirection:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
193
- - (void)setHillshadeIlluminationAnchor:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
194
- - (void)setHillshadeExaggeration:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
195
- - (void)setHillshadeExaggerationTransition:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
196
- - (void)setHillshadeShadowColor:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
197
- - (void)setHillshadeShadowColorTransition:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
198
- - (void)setHillshadeHighlightColor:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
199
- - (void)setHillshadeHighlightColorTransition:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
200
- - (void)setHillshadeAccentColor:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
201
- - (void)setHillshadeAccentColorTransition:(MGLHillshadeStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
202
- - (void)setBackgroundStyleLayerVisibility:(MGLBackgroundStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
203
- - (void)setBackgroundColor:(MGLBackgroundStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
204
- - (void)setBackgroundColorTransition:(MGLBackgroundStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
205
- - (void)setBackgroundPattern:(MGLBackgroundStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
206
- - (void)setBackgroundOpacity:(MGLBackgroundStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
207
- - (void)setBackgroundOpacityTransition:(MGLBackgroundStyleLayer *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
208
- - (void)setAnchor:(MGLLight *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
209
- - (void)setPosition:(MGLLight *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
210
- - (void)setPositionTransition:(MGLLight *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
211
- - (void)setColor:(MGLLight *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
212
- - (void)setColorTransition:(MGLLight *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
213
- - (void)setIntensity:(MGLLight *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
214
- - (void)setIntensityTransition:(MGLLight *)layer withReactStyleValue:(RCTMGLStyleValue *)styleValue;
215
-
216
-
217
- @end