@@ -80,9 +80,6 @@ public void onAllImagesLoaded() {
80
80
}
81
81
});
82
82
break ;
83
- case "fillPatternTransition" :
84
- RCTMGLStyleFactory .setFillPatternTransition (layer , styleValue );
85
- break ;
86
83
}
87
84
}
88
85
}
@@ -163,9 +160,6 @@ public static void setLineLayerStyle(final LineLayer layer, RCTMGLStyle style) {
163
160
case "lineDasharray" :
164
161
RCTMGLStyleFactory .setLineDasharray (layer , styleValue );
165
162
break ;
166
- case "lineDasharrayTransition" :
167
- RCTMGLStyleFactory .setLineDasharrayTransition (layer , styleValue );
168
- break ;
169
163
case "linePattern" :
170
164
style .addImage (styleValue , new DownloadMapImageTask .OnAllImagesLoaded () {
171
165
@ Override
@@ -174,9 +168,6 @@ public void onAllImagesLoaded() {
174
168
}
175
169
});
176
170
break ;
177
- case "linePatternTransition" :
178
- RCTMGLStyleFactory .setLinePatternTransition (layer , styleValue );
179
- break ;
180
171
case "lineGradient" :
181
172
RCTMGLStyleFactory .setLineGradient (layer , styleValue );
182
173
break ;
@@ -564,9 +555,6 @@ public void onAllImagesLoaded() {
564
555
}
565
556
});
566
557
break ;
567
- case "fillExtrusionPatternTransition" :
568
- RCTMGLStyleFactory .setFillExtrusionPatternTransition (layer , styleValue );
569
- break ;
570
558
case "fillExtrusionHeight" :
571
559
RCTMGLStyleFactory .setFillExtrusionHeight (layer , styleValue );
572
560
break ;
@@ -719,9 +707,6 @@ public void onAllImagesLoaded() {
719
707
}
720
708
});
721
709
break ;
722
- case "backgroundPatternTransition" :
723
- RCTMGLStyleFactory .setBackgroundPatternTransition (layer , styleValue );
724
- break ;
725
710
case "backgroundOpacity" :
726
711
RCTMGLStyleFactory .setBackgroundOpacity (layer , styleValue );
727
712
break ;
@@ -871,14 +856,6 @@ public static void setFillPattern(FillLayer layer, RCTMGLStyleValue styleValue)
871
856
}
872
857
}
873
858
874
-
875
- public static void setFillPatternTransition (FillLayer layer , RCTMGLStyleValue styleValue ) {
876
- TransitionOptions transition = styleValue .getTransition ();
877
- if (transition != null ) {
878
- layer .setFillPatternTransition (transition );
879
- }
880
- }
881
-
882
859
public static void setLineCap (LineLayer layer , RCTMGLStyleValue styleValue ) {
883
860
if (styleValue .isExpression ()) {
884
861
layer .setProperties (PropertyFactory .lineCap (styleValue .getExpression ()));
@@ -1051,14 +1028,6 @@ public static void setLineDasharray(LineLayer layer, RCTMGLStyleValue styleValue
1051
1028
}
1052
1029
}
1053
1030
1054
-
1055
- public static void setLineDasharrayTransition (LineLayer layer , RCTMGLStyleValue styleValue ) {
1056
- TransitionOptions transition = styleValue .getTransition ();
1057
- if (transition != null ) {
1058
- layer .setLineDasharrayTransition (transition );
1059
- }
1060
- }
1061
-
1062
1031
public static void setLinePattern (LineLayer layer , RCTMGLStyleValue styleValue ) {
1063
1032
if (styleValue .isExpression ()) {
1064
1033
if (styleValue .isImageStringValue ()) {
@@ -1071,14 +1040,6 @@ public static void setLinePattern(LineLayer layer, RCTMGLStyleValue styleValue)
1071
1040
}
1072
1041
}
1073
1042
1074
-
1075
- public static void setLinePatternTransition (LineLayer layer , RCTMGLStyleValue styleValue ) {
1076
- TransitionOptions transition = styleValue .getTransition ();
1077
- if (transition != null ) {
1078
- layer .setLinePatternTransition (transition );
1079
- }
1080
- }
1081
-
1082
1043
public static void setLineGradient (LineLayer layer , RCTMGLStyleValue styleValue ) {
1083
1044
if (styleValue .isExpression ()) {
1084
1045
layer .setProperties (PropertyFactory .lineGradient (styleValue .getExpression ()));
@@ -1927,14 +1888,6 @@ public static void setFillExtrusionPattern(FillExtrusionLayer layer, RCTMGLStyle
1927
1888
}
1928
1889
}
1929
1890
1930
-
1931
- public static void setFillExtrusionPatternTransition (FillExtrusionLayer layer , RCTMGLStyleValue styleValue ) {
1932
- TransitionOptions transition = styleValue .getTransition ();
1933
- if (transition != null ) {
1934
- layer .setFillExtrusionPatternTransition (transition );
1935
- }
1936
- }
1937
-
1938
1891
public static void setFillExtrusionHeight (FillExtrusionLayer layer , RCTMGLStyleValue styleValue ) {
1939
1892
if (styleValue .isExpression ()) {
1940
1893
layer .setProperties (PropertyFactory .fillExtrusionHeight (styleValue .getExpression ()));
@@ -2207,14 +2160,6 @@ public static void setBackgroundPattern(BackgroundLayer layer, RCTMGLStyleValue
2207
2160
}
2208
2161
}
2209
2162
2210
-
2211
- public static void setBackgroundPatternTransition (BackgroundLayer layer , RCTMGLStyleValue styleValue ) {
2212
- TransitionOptions transition = styleValue .getTransition ();
2213
- if (transition != null ) {
2214
- layer .setBackgroundPatternTransition (transition );
2215
- }
2216
- }
2217
-
2218
2163
public static void setBackgroundOpacity (BackgroundLayer layer , RCTMGLStyleValue styleValue ) {
2219
2164
if (styleValue .isExpression ()) {
2220
2165
layer .setProperties (PropertyFactory .backgroundOpacity (styleValue .getExpression ()));
0 commit comments