@@ -59,7 +59,9 @@ partial class VisibilityExtensions
59
59
{
60
60
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . Visibility ToPlatform ( this Visibility value )
61
61
{
62
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . Visibility . ValueOf ( value ) ;
62
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . Visibility . ValueOf (
63
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
64
+ ) ;
63
65
}
64
66
}
65
67
#endif
@@ -128,7 +130,9 @@ partial class LineCapExtensions
128
130
{
129
131
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . LineCap ToPlatform ( this LineCap value )
130
132
{
131
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . LineCap . ValueOf ( value ) ;
133
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . LineCap . ValueOf (
134
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
135
+ ) ;
132
136
}
133
137
}
134
138
#endif
@@ -197,7 +201,9 @@ partial class LineJoinExtensions
197
201
{
198
202
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . LineJoin ToPlatform ( this LineJoin value )
199
203
{
200
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . LineJoin . ValueOf ( value ) ;
204
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . LineJoin . ValueOf (
205
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
206
+ ) ;
201
207
}
202
208
}
203
209
#endif
@@ -296,7 +302,9 @@ partial class IconAnchorExtensions
296
302
{
297
303
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . IconAnchor ToPlatform ( this IconAnchor value )
298
304
{
299
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . IconAnchor . ValueOf ( value ) ;
305
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . IconAnchor . ValueOf (
306
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
307
+ ) ;
300
308
}
301
309
}
302
310
#endif
@@ -365,7 +373,9 @@ partial class IconPitchAlignmentExtensions
365
373
{
366
374
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . IconPitchAlignment ToPlatform ( this IconPitchAlignment value )
367
375
{
368
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . IconPitchAlignment . ValueOf ( value ) ;
376
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . IconPitchAlignment . ValueOf (
377
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
378
+ ) ;
369
379
}
370
380
}
371
381
#endif
@@ -434,7 +444,9 @@ partial class IconRotationAlignmentExtensions
434
444
{
435
445
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . IconRotationAlignment ToPlatform ( this IconRotationAlignment value )
436
446
{
437
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . IconRotationAlignment . ValueOf ( value ) ;
447
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . IconRotationAlignment . ValueOf (
448
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
449
+ ) ;
438
450
}
439
451
}
440
452
#endif
@@ -508,7 +520,9 @@ partial class IconTextFitExtensions
508
520
{
509
521
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . IconTextFit ToPlatform ( this IconTextFit value )
510
522
{
511
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . IconTextFit . ValueOf ( value ) ;
523
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . IconTextFit . ValueOf (
524
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
525
+ ) ;
512
526
}
513
527
}
514
528
#endif
@@ -577,7 +591,9 @@ partial class SymbolPlacementExtensions
577
591
{
578
592
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . SymbolPlacement ToPlatform ( this SymbolPlacement value )
579
593
{
580
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . SymbolPlacement . ValueOf ( value ) ;
594
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . SymbolPlacement . ValueOf (
595
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
596
+ ) ;
581
597
}
582
598
}
583
599
#endif
@@ -646,7 +662,9 @@ partial class SymbolZOrderExtensions
646
662
{
647
663
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . SymbolZOrder ToPlatform ( this SymbolZOrder value )
648
664
{
649
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . SymbolZOrder . ValueOf ( value ) ;
665
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . SymbolZOrder . ValueOf (
666
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
667
+ ) ;
650
668
}
651
669
}
652
670
#endif
@@ -745,7 +763,9 @@ partial class TextAnchorExtensions
745
763
{
746
764
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextAnchor ToPlatform ( this TextAnchor value )
747
765
{
748
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextAnchor . ValueOf ( value ) ;
766
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextAnchor . ValueOf (
767
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
768
+ ) ;
749
769
}
750
770
}
751
771
#endif
@@ -819,7 +839,9 @@ partial class TextJustifyExtensions
819
839
{
820
840
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextJustify ToPlatform ( this TextJustify value )
821
841
{
822
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextJustify . ValueOf ( value ) ;
842
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextJustify . ValueOf (
843
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
844
+ ) ;
823
845
}
824
846
}
825
847
#endif
@@ -888,7 +910,9 @@ partial class TextPitchAlignmentExtensions
888
910
{
889
911
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextPitchAlignment ToPlatform ( this TextPitchAlignment value )
890
912
{
891
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextPitchAlignment . ValueOf ( value ) ;
913
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextPitchAlignment . ValueOf (
914
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
915
+ ) ;
892
916
}
893
917
}
894
918
#endif
@@ -957,7 +981,9 @@ partial class TextRotationAlignmentExtensions
957
981
{
958
982
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextRotationAlignment ToPlatform ( this TextRotationAlignment value )
959
983
{
960
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextRotationAlignment . ValueOf ( value ) ;
984
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextRotationAlignment . ValueOf (
985
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
986
+ ) ;
961
987
}
962
988
}
963
989
#endif
@@ -1026,7 +1052,9 @@ partial class TextTransformExtensions
1026
1052
{
1027
1053
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextTransform ToPlatform ( this TextTransform value )
1028
1054
{
1029
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextTransform . ValueOf ( value ) ;
1055
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextTransform . ValueOf (
1056
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
1057
+ ) ;
1030
1058
}
1031
1059
}
1032
1060
#endif
@@ -1090,7 +1118,9 @@ partial class FillTranslateAnchorExtensions
1090
1118
{
1091
1119
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . FillTranslateAnchor ToPlatform ( this FillTranslateAnchor value )
1092
1120
{
1093
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . FillTranslateAnchor . ValueOf ( value ) ;
1121
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . FillTranslateAnchor . ValueOf (
1122
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
1123
+ ) ;
1094
1124
}
1095
1125
}
1096
1126
#endif
@@ -1154,7 +1184,9 @@ partial class LineTranslateAnchorExtensions
1154
1184
{
1155
1185
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . LineTranslateAnchor ToPlatform ( this LineTranslateAnchor value )
1156
1186
{
1157
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . LineTranslateAnchor . ValueOf ( value ) ;
1187
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . LineTranslateAnchor . ValueOf (
1188
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
1189
+ ) ;
1158
1190
}
1159
1191
}
1160
1192
#endif
@@ -1218,7 +1250,9 @@ partial class IconTranslateAnchorExtensions
1218
1250
{
1219
1251
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . IconTranslateAnchor ToPlatform ( this IconTranslateAnchor value )
1220
1252
{
1221
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . IconTranslateAnchor . ValueOf ( value ) ;
1253
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . IconTranslateAnchor . ValueOf (
1254
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
1255
+ ) ;
1222
1256
}
1223
1257
}
1224
1258
#endif
@@ -1282,7 +1316,9 @@ partial class TextTranslateAnchorExtensions
1282
1316
{
1283
1317
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextTranslateAnchor ToPlatform ( this TextTranslateAnchor value )
1284
1318
{
1285
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextTranslateAnchor . ValueOf ( value ) ;
1319
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextTranslateAnchor . ValueOf (
1320
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
1321
+ ) ;
1286
1322
}
1287
1323
}
1288
1324
#endif
@@ -1346,7 +1382,9 @@ partial class CirclePitchAlignmentExtensions
1346
1382
{
1347
1383
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . CirclePitchAlignment ToPlatform ( this CirclePitchAlignment value )
1348
1384
{
1349
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . CirclePitchAlignment . ValueOf ( value ) ;
1385
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . CirclePitchAlignment . ValueOf (
1386
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
1387
+ ) ;
1350
1388
}
1351
1389
}
1352
1390
#endif
@@ -1410,7 +1448,9 @@ partial class CirclePitchScaleExtensions
1410
1448
{
1411
1449
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . CirclePitchScale ToPlatform ( this CirclePitchScale value )
1412
1450
{
1413
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . CirclePitchScale . ValueOf ( value ) ;
1451
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . CirclePitchScale . ValueOf (
1452
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
1453
+ ) ;
1414
1454
}
1415
1455
}
1416
1456
#endif
@@ -1474,7 +1514,9 @@ partial class CircleTranslateAnchorExtensions
1474
1514
{
1475
1515
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . CircleTranslateAnchor ToPlatform ( this CircleTranslateAnchor value )
1476
1516
{
1477
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . CircleTranslateAnchor . ValueOf ( value ) ;
1517
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . CircleTranslateAnchor . ValueOf (
1518
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
1519
+ ) ;
1478
1520
}
1479
1521
}
1480
1522
#endif
@@ -1538,7 +1580,9 @@ partial class FillExtrusionTranslateAnchorExtensions
1538
1580
{
1539
1581
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . FillExtrusionTranslateAnchor ToPlatform ( this FillExtrusionTranslateAnchor value )
1540
1582
{
1541
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . FillExtrusionTranslateAnchor . ValueOf ( value ) ;
1583
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . FillExtrusionTranslateAnchor . ValueOf (
1584
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
1585
+ ) ;
1542
1586
}
1543
1587
}
1544
1588
#endif
@@ -1602,7 +1646,9 @@ partial class RasterResamplingExtensions
1602
1646
{
1603
1647
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . RasterResampling ToPlatform ( this RasterResampling value )
1604
1648
{
1605
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . RasterResampling . ValueOf ( value ) ;
1649
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . RasterResampling . ValueOf (
1650
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
1651
+ ) ;
1606
1652
}
1607
1653
}
1608
1654
#endif
@@ -1666,7 +1712,9 @@ partial class HillshadeIlluminationAnchorExtensions
1666
1712
{
1667
1713
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . HillshadeIlluminationAnchor ToPlatform ( this HillshadeIlluminationAnchor value )
1668
1714
{
1669
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . HillshadeIlluminationAnchor . ValueOf ( value ) ;
1715
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . HillshadeIlluminationAnchor . ValueOf (
1716
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
1717
+ ) ;
1670
1718
}
1671
1719
}
1672
1720
#endif
@@ -1730,7 +1778,9 @@ partial class SkyTypeExtensions
1730
1778
{
1731
1779
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . SkyType ToPlatform ( this SkyType value )
1732
1780
{
1733
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . SkyType . ValueOf ( value ) ;
1781
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . SkyType . ValueOf (
1782
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
1783
+ ) ;
1734
1784
}
1735
1785
}
1736
1786
#endif
@@ -1794,7 +1844,9 @@ partial class AnchorExtensions
1794
1844
{
1795
1845
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . Anchor ToPlatform ( this Anchor value )
1796
1846
{
1797
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . Anchor . ValueOf ( value ) ;
1847
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . Anchor . ValueOf (
1848
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
1849
+ ) ;
1798
1850
}
1799
1851
}
1800
1852
#endif
@@ -1858,7 +1910,9 @@ partial class StyleProjectionNameExtensions
1858
1910
{
1859
1911
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . ProjectionName ToPlatform ( this StyleProjectionName value )
1860
1912
{
1861
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . ProjectionName . ValueOf ( value ) ;
1913
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . ProjectionName . ValueOf (
1914
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
1915
+ ) ;
1862
1916
}
1863
1917
}
1864
1918
#endif
@@ -1922,7 +1976,9 @@ partial class TextWritingModeExtensions
1922
1976
{
1923
1977
public static Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextWritingMode ToPlatform ( this TextWritingMode value )
1924
1978
{
1925
- return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextWritingMode . ValueOf ( value ) ;
1979
+ return Com . Mapbox . Maps . Extension . Style . Layers . Properties . Generated . TextWritingMode . ValueOf (
1980
+ value . Value . ToUpper ( new System . Globalization . CultureInfo ( "en-US" ) )
1981
+ ) ;
1926
1982
}
1927
1983
}
1928
1984
#endif
0 commit comments