react-native-google-maps-plus 1.7.0-dev.1 → 1.7.0-dev.11
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.
- package/android/src/main/java/com/rngooglemapsplus/GoogleMapsViewImpl.kt +457 -451
- package/android/src/main/java/com/rngooglemapsplus/LocationHandler.kt +3 -8
- package/android/src/main/java/com/rngooglemapsplus/MapCircleBuilder.kt +2 -1
- package/android/src/main/java/com/rngooglemapsplus/MapHeatmapBuilder.kt +1 -1
- package/android/src/main/java/com/rngooglemapsplus/MapHelper.kt +22 -0
- package/android/src/main/java/com/rngooglemapsplus/MapMarkerBuilder.kt +103 -2
- package/android/src/main/java/com/rngooglemapsplus/MapPolygonBuilder.kt +2 -1
- package/android/src/main/java/com/rngooglemapsplus/MapPolylineBuilder.kt.kt +2 -1
- package/android/src/main/java/com/rngooglemapsplus/MapUrlTileOverlayBuilder.kt +40 -0
- package/android/src/main/java/com/rngooglemapsplus/RNGoogleMapsPlusView.kt +84 -34
- package/android/src/main/java/com/rngooglemapsplus/extensions/LatLngBoundsExtension.kt +10 -0
- package/android/src/main/java/com/rngooglemapsplus/extensions/MapObjectTagExtensions.kt +84 -0
- package/android/src/main/java/com/rngooglemapsplus/extensions/RNLatLngBoundsExtension.kt +2 -8
- package/android/src/main/java/com/rngooglemapsplus/extensions/RNMapTypeExtension.kt +13 -0
- package/android/src/main/java/com/rngooglemapsplus/extensions/VisibleRegionExtension.kt +13 -0
- package/ios/GoogleMapViewImpl.swift +164 -48
- package/ios/MapCircleBuilder.swift +2 -0
- package/ios/MapHeatmapBuilder.swift +2 -1
- package/ios/MapMarkerBuilder.swift +54 -1
- package/ios/MapPolygonBuilder.swift +2 -0
- package/ios/MapPolylineBuilder.swift +2 -0
- package/ios/MapUrlTileOverlayBuilder.swift +24 -0
- package/ios/RNGoogleMapsPlusView.swift +68 -11
- package/ios/extensions/GMSCoordinateBounds+Extension.swift +4 -13
- package/ios/extensions/GMSVisibleRegion+Extension.swift +14 -0
- package/ios/extensions/MapObjectTag+Extension.swift +93 -0
- package/ios/extensions/RNLatLngBounds+Extension.swift +4 -4
- package/ios/extensions/RNMapType+Extension.swift +18 -0
- package/lib/module/types.js.map +1 -1
- package/lib/nitrogen/generated/shared/json/RNGoogleMapsPlusViewConfig.json +7 -0
- package/lib/typescript/src/RNGoogleMapsPlusView.nitro.d.ts +18 -9
- package/lib/typescript/src/RNGoogleMapsPlusView.nitro.d.ts.map +1 -1
- package/lib/typescript/src/types.d.ts +18 -5
- package/lib/typescript/src/types.d.ts.map +1 -1
- package/nitrogen/generated/android/RNGoogleMapsPlusOnLoad.cpp +8 -4
- package/nitrogen/generated/android/c++/JFunc_void_RNRegion_RNCamera.hpp +83 -0
- package/nitrogen/generated/android/c++/JFunc_void_RNRegion_RNCamera_bool.hpp +2 -0
- package/nitrogen/generated/android/c++/JFunc_void_std__string.hpp +75 -0
- package/nitrogen/generated/android/c++/JFunc_void_std__string_RNLatLng.hpp +77 -0
- package/nitrogen/generated/android/c++/JFunc_void_std__string_std__string_RNLatLng.hpp +77 -0
- package/nitrogen/generated/android/c++/JHybridRNGoogleMapsPlusViewSpec.cpp +237 -83
- package/nitrogen/generated/android/c++/JHybridRNGoogleMapsPlusViewSpec.hpp +32 -16
- package/nitrogen/generated/android/c++/JRNLatLngBounds.hpp +8 -8
- package/nitrogen/generated/android/c++/JRNMapUiSettings.hpp +11 -3
- package/nitrogen/generated/android/c++/JRNMarker.hpp +7 -3
- package/nitrogen/generated/android/c++/JRNRegion.hpp +23 -13
- package/nitrogen/generated/android/c++/JRNUrlTileOverlay.hpp +78 -0
- package/nitrogen/generated/android/c++/views/JHybridRNGoogleMapsPlusViewStateUpdater.cpp +28 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/rngooglemapsplus/Func_void_RNRegion_RNCamera.kt +81 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/rngooglemapsplus/{Func_void_std__optional_std__string_.kt → Func_void_std__string.kt} +12 -12
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/rngooglemapsplus/{Func_void_std__optional_std__string__RNLatLng.kt → Func_void_std__string_RNLatLng.kt} +12 -12
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/rngooglemapsplus/Func_void_std__string_std__string_RNLatLng.kt +81 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/rngooglemapsplus/HybridRNGoogleMapsPlusViewSpec.kt +122 -24
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/rngooglemapsplus/RNLatLngBounds.kt +4 -4
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/rngooglemapsplus/RNMapUiSettings.kt +9 -3
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/rngooglemapsplus/RNMarker.kt +6 -3
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/rngooglemapsplus/RNRegion.kt +11 -5
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/rngooglemapsplus/RNUrlTileOverlay.kt +52 -0
- package/nitrogen/generated/ios/RNGoogleMapsPlus-Swift-Cxx-Bridge.cpp +32 -8
- package/nitrogen/generated/ios/RNGoogleMapsPlus-Swift-Cxx-Bridge.hpp +168 -43
- package/nitrogen/generated/ios/RNGoogleMapsPlus-Swift-Cxx-Umbrella.hpp +3 -0
- package/nitrogen/generated/ios/c++/HybridRNGoogleMapsPlusViewSpecSwift.hpp +86 -22
- package/nitrogen/generated/ios/c++/views/HybridRNGoogleMapsPlusViewComponent.mm +35 -0
- package/nitrogen/generated/ios/swift/Func_void_RNRegion_RNCamera.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_std__optional_std__string_.swift +6 -6
- package/nitrogen/generated/ios/swift/Func_void_std__string.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_std__string_RNLatLng.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_std__string_std__string_RNLatLng.swift +47 -0
- package/nitrogen/generated/ios/swift/HybridRNGoogleMapsPlusViewSpec.swift +17 -8
- package/nitrogen/generated/ios/swift/HybridRNGoogleMapsPlusViewSpec_cxx.swift +340 -138
- package/nitrogen/generated/ios/swift/RNLatLngBounds.swift +8 -8
- package/nitrogen/generated/ios/swift/RNMapUiSettings.swift +61 -1
- package/nitrogen/generated/ios/swift/RNMarker.swift +24 -1
- package/nitrogen/generated/ios/swift/RNRegion.swift +33 -11
- package/nitrogen/generated/ios/swift/RNUrlTileOverlay.swift +133 -0
- package/nitrogen/generated/shared/c++/HybridRNGoogleMapsPlusViewSpec.cpp +16 -0
- package/nitrogen/generated/shared/c++/HybridRNGoogleMapsPlusViewSpec.hpp +41 -22
- package/nitrogen/generated/shared/c++/RNLatLngBounds.hpp +9 -9
- package/nitrogen/generated/shared/c++/RNMapUiSettings.hpp +10 -2
- package/nitrogen/generated/shared/c++/RNMarker.hpp +6 -2
- package/nitrogen/generated/shared/c++/RNRegion.hpp +24 -13
- package/nitrogen/generated/shared/c++/RNUrlTileOverlay.hpp +96 -0
- package/nitrogen/generated/shared/c++/views/HybridRNGoogleMapsPlusViewComponent.cpp +100 -16
- package/nitrogen/generated/shared/c++/views/HybridRNGoogleMapsPlusViewComponent.hpp +18 -10
- package/nitrogen/generated/shared/json/RNGoogleMapsPlusViewConfig.json +7 -0
- package/package.json +4 -2
- package/src/RNGoogleMapsPlusView.nitro.ts +20 -8
- package/src/types.ts +19 -5
- package/android/src/main/java/com/rngooglemapsplus/extensions/LatLngBounds.kt +0 -15
- package/nitrogen/generated/android/c++/JFunc_void_std__optional_std__string_.hpp +0 -76
- package/nitrogen/generated/android/c++/JFunc_void_std__optional_std__string__RNLatLng.hpp +0 -78
- package/nitrogen/generated/ios/swift/Func_void_std__optional_std__string__RNLatLng.swift +0 -54
- /package/android/src/main/java/com/rngooglemapsplus/extensions/{RNSize.kt → RNSizeExtension.kt} +0 -0
- /package/android/src/main/java/com/rngooglemapsplus/extensions/{RNSnapshotFormat.kt → RNSnapshotFormatExtension.kt} +0 -0
- /package/android/src/main/java/com/rngooglemapsplus/extensions/{RNSnapshotResultType.kt → RNSnapshotResultTypeExtension.kt} +0 -0
|
@@ -508,6 +508,36 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
508
508
|
}
|
|
509
509
|
}
|
|
510
510
|
|
|
511
|
+
public final var urlTileOverlays: bridge.std__optional_std__vector_RNUrlTileOverlay__ {
|
|
512
|
+
@inline(__always)
|
|
513
|
+
get {
|
|
514
|
+
return { () -> bridge.std__optional_std__vector_RNUrlTileOverlay__ in
|
|
515
|
+
if let __unwrappedValue = self.__implementation.urlTileOverlays {
|
|
516
|
+
return bridge.create_std__optional_std__vector_RNUrlTileOverlay__({ () -> bridge.std__vector_RNUrlTileOverlay_ in
|
|
517
|
+
var __vector = bridge.create_std__vector_RNUrlTileOverlay_(__unwrappedValue.count)
|
|
518
|
+
for __item in __unwrappedValue {
|
|
519
|
+
__vector.push_back(__item)
|
|
520
|
+
}
|
|
521
|
+
return __vector
|
|
522
|
+
}())
|
|
523
|
+
} else {
|
|
524
|
+
return .init()
|
|
525
|
+
}
|
|
526
|
+
}()
|
|
527
|
+
}
|
|
528
|
+
@inline(__always)
|
|
529
|
+
set {
|
|
530
|
+
self.__implementation.urlTileOverlays = { () -> [RNUrlTileOverlay]? in
|
|
531
|
+
if bridge.has_value_std__optional_std__vector_RNUrlTileOverlay__(newValue) {
|
|
532
|
+
let __unwrapped = bridge.get_std__optional_std__vector_RNUrlTileOverlay__(newValue)
|
|
533
|
+
return __unwrapped.map({ __item in __item })
|
|
534
|
+
} else {
|
|
535
|
+
return nil
|
|
536
|
+
}
|
|
537
|
+
}()
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
|
|
511
541
|
public final var locationConfig: bridge.std__optional_RNLocationConfig_ {
|
|
512
542
|
@inline(__always)
|
|
513
543
|
get {
|
|
@@ -589,14 +619,14 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
589
619
|
}
|
|
590
620
|
}
|
|
591
621
|
|
|
592
|
-
public final var onMapLoaded: bridge.
|
|
622
|
+
public final var onMapLoaded: bridge.std__optional_std__function_void_const_RNRegion_____region_____const_RNCamera_____camera______ {
|
|
593
623
|
@inline(__always)
|
|
594
624
|
get {
|
|
595
|
-
return { () -> bridge.
|
|
625
|
+
return { () -> bridge.std__optional_std__function_void_const_RNRegion_____region_____const_RNCamera_____camera______ in
|
|
596
626
|
if let __unwrappedValue = self.__implementation.onMapLoaded {
|
|
597
|
-
return bridge.
|
|
598
|
-
let __closureWrapper =
|
|
599
|
-
return bridge.
|
|
627
|
+
return bridge.create_std__optional_std__function_void_const_RNRegion_____region_____const_RNCamera_____camera______({ () -> bridge.Func_void_RNRegion_RNCamera in
|
|
628
|
+
let __closureWrapper = Func_void_RNRegion_RNCamera(__unwrappedValue)
|
|
629
|
+
return bridge.create_Func_void_RNRegion_RNCamera(__closureWrapper.toUnsafe())
|
|
600
630
|
}())
|
|
601
631
|
} else {
|
|
602
632
|
return .init()
|
|
@@ -605,13 +635,13 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
605
635
|
}
|
|
606
636
|
@inline(__always)
|
|
607
637
|
set {
|
|
608
|
-
self.__implementation.onMapLoaded = { () -> ((_
|
|
609
|
-
if bridge.
|
|
610
|
-
let __unwrapped = bridge.
|
|
611
|
-
return { () -> (
|
|
612
|
-
let __wrappedFunction = bridge.
|
|
613
|
-
return { (
|
|
614
|
-
__wrappedFunction.call(
|
|
638
|
+
self.__implementation.onMapLoaded = { () -> ((_ region: RNRegion, _ camera: RNCamera) -> Void)? in
|
|
639
|
+
if bridge.has_value_std__optional_std__function_void_const_RNRegion_____region_____const_RNCamera_____camera______(newValue) {
|
|
640
|
+
let __unwrapped = bridge.get_std__optional_std__function_void_const_RNRegion_____region_____const_RNCamera_____camera______(newValue)
|
|
641
|
+
return { () -> (RNRegion, RNCamera) -> Void in
|
|
642
|
+
let __wrappedFunction = bridge.wrap_Func_void_RNRegion_RNCamera(__unwrapped)
|
|
643
|
+
return { (__region: RNRegion, __camera: RNCamera) -> Void in
|
|
644
|
+
__wrappedFunction.call(__region, __camera)
|
|
615
645
|
}
|
|
616
646
|
}()
|
|
617
647
|
} else {
|
|
@@ -749,14 +779,46 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
749
779
|
}
|
|
750
780
|
}
|
|
751
781
|
|
|
752
|
-
public final var
|
|
782
|
+
public final var onPoiPress: bridge.std__optional_std__function_void_const_std__string_____placeId_____const_std__string_____name_____const_RNLatLng_____coordinate______ {
|
|
783
|
+
@inline(__always)
|
|
784
|
+
get {
|
|
785
|
+
return { () -> bridge.std__optional_std__function_void_const_std__string_____placeId_____const_std__string_____name_____const_RNLatLng_____coordinate______ in
|
|
786
|
+
if let __unwrappedValue = self.__implementation.onPoiPress {
|
|
787
|
+
return bridge.create_std__optional_std__function_void_const_std__string_____placeId_____const_std__string_____name_____const_RNLatLng_____coordinate______({ () -> bridge.Func_void_std__string_std__string_RNLatLng in
|
|
788
|
+
let __closureWrapper = Func_void_std__string_std__string_RNLatLng(__unwrappedValue)
|
|
789
|
+
return bridge.create_Func_void_std__string_std__string_RNLatLng(__closureWrapper.toUnsafe())
|
|
790
|
+
}())
|
|
791
|
+
} else {
|
|
792
|
+
return .init()
|
|
793
|
+
}
|
|
794
|
+
}()
|
|
795
|
+
}
|
|
796
|
+
@inline(__always)
|
|
797
|
+
set {
|
|
798
|
+
self.__implementation.onPoiPress = { () -> ((_ placeId: String, _ name: String, _ coordinate: RNLatLng) -> Void)? in
|
|
799
|
+
if bridge.has_value_std__optional_std__function_void_const_std__string_____placeId_____const_std__string_____name_____const_RNLatLng_____coordinate______(newValue) {
|
|
800
|
+
let __unwrapped = bridge.get_std__optional_std__function_void_const_std__string_____placeId_____const_std__string_____name_____const_RNLatLng_____coordinate______(newValue)
|
|
801
|
+
return { () -> (String, String, RNLatLng) -> Void in
|
|
802
|
+
let __wrappedFunction = bridge.wrap_Func_void_std__string_std__string_RNLatLng(__unwrapped)
|
|
803
|
+
return { (__placeId: String, __name: String, __coordinate: RNLatLng) -> Void in
|
|
804
|
+
__wrappedFunction.call(std.string(__placeId), std.string(__name), __coordinate)
|
|
805
|
+
}
|
|
806
|
+
}()
|
|
807
|
+
} else {
|
|
808
|
+
return nil
|
|
809
|
+
}
|
|
810
|
+
}()
|
|
811
|
+
}
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
public final var onMarkerPress: bridge.std__optional_std__function_void_const_std__string_____id______ {
|
|
753
815
|
@inline(__always)
|
|
754
816
|
get {
|
|
755
|
-
return { () -> bridge.
|
|
817
|
+
return { () -> bridge.std__optional_std__function_void_const_std__string_____id______ in
|
|
756
818
|
if let __unwrappedValue = self.__implementation.onMarkerPress {
|
|
757
|
-
return bridge.
|
|
758
|
-
let __closureWrapper =
|
|
759
|
-
return bridge.
|
|
819
|
+
return bridge.create_std__optional_std__function_void_const_std__string_____id______({ () -> bridge.Func_void_std__string in
|
|
820
|
+
let __closureWrapper = Func_void_std__string(__unwrappedValue)
|
|
821
|
+
return bridge.create_Func_void_std__string(__closureWrapper.toUnsafe())
|
|
760
822
|
}())
|
|
761
823
|
} else {
|
|
762
824
|
return .init()
|
|
@@ -765,19 +827,13 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
765
827
|
}
|
|
766
828
|
@inline(__always)
|
|
767
829
|
set {
|
|
768
|
-
self.__implementation.onMarkerPress = { () -> ((_ id: String
|
|
769
|
-
if bridge.
|
|
770
|
-
let __unwrapped = bridge.
|
|
771
|
-
return { () -> (String
|
|
772
|
-
let __wrappedFunction = bridge.
|
|
773
|
-
return { (__id: String
|
|
774
|
-
__wrappedFunction.call(
|
|
775
|
-
if let __unwrappedValue = __id {
|
|
776
|
-
return bridge.create_std__optional_std__string_(std.string(__unwrappedValue))
|
|
777
|
-
} else {
|
|
778
|
-
return .init()
|
|
779
|
-
}
|
|
780
|
-
}())
|
|
830
|
+
self.__implementation.onMarkerPress = { () -> ((_ id: String) -> Void)? in
|
|
831
|
+
if bridge.has_value_std__optional_std__function_void_const_std__string_____id______(newValue) {
|
|
832
|
+
let __unwrapped = bridge.get_std__optional_std__function_void_const_std__string_____id______(newValue)
|
|
833
|
+
return { () -> (String) -> Void in
|
|
834
|
+
let __wrappedFunction = bridge.wrap_Func_void_std__string(__unwrapped)
|
|
835
|
+
return { (__id: String) -> Void in
|
|
836
|
+
__wrappedFunction.call(std.string(__id))
|
|
781
837
|
}
|
|
782
838
|
}()
|
|
783
839
|
} else {
|
|
@@ -787,14 +843,14 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
787
843
|
}
|
|
788
844
|
}
|
|
789
845
|
|
|
790
|
-
public final var onPolylinePress: bridge.
|
|
846
|
+
public final var onPolylinePress: bridge.std__optional_std__function_void_const_std__string_____id______ {
|
|
791
847
|
@inline(__always)
|
|
792
848
|
get {
|
|
793
|
-
return { () -> bridge.
|
|
849
|
+
return { () -> bridge.std__optional_std__function_void_const_std__string_____id______ in
|
|
794
850
|
if let __unwrappedValue = self.__implementation.onPolylinePress {
|
|
795
|
-
return bridge.
|
|
796
|
-
let __closureWrapper =
|
|
797
|
-
return bridge.
|
|
851
|
+
return bridge.create_std__optional_std__function_void_const_std__string_____id______({ () -> bridge.Func_void_std__string in
|
|
852
|
+
let __closureWrapper = Func_void_std__string(__unwrappedValue)
|
|
853
|
+
return bridge.create_Func_void_std__string(__closureWrapper.toUnsafe())
|
|
798
854
|
}())
|
|
799
855
|
} else {
|
|
800
856
|
return .init()
|
|
@@ -803,19 +859,13 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
803
859
|
}
|
|
804
860
|
@inline(__always)
|
|
805
861
|
set {
|
|
806
|
-
self.__implementation.onPolylinePress = { () -> ((_ id: String
|
|
807
|
-
if bridge.
|
|
808
|
-
let __unwrapped = bridge.
|
|
809
|
-
return { () -> (String
|
|
810
|
-
let __wrappedFunction = bridge.
|
|
811
|
-
return { (__id: String
|
|
812
|
-
__wrappedFunction.call(
|
|
813
|
-
if let __unwrappedValue = __id {
|
|
814
|
-
return bridge.create_std__optional_std__string_(std.string(__unwrappedValue))
|
|
815
|
-
} else {
|
|
816
|
-
return .init()
|
|
817
|
-
}
|
|
818
|
-
}())
|
|
862
|
+
self.__implementation.onPolylinePress = { () -> ((_ id: String) -> Void)? in
|
|
863
|
+
if bridge.has_value_std__optional_std__function_void_const_std__string_____id______(newValue) {
|
|
864
|
+
let __unwrapped = bridge.get_std__optional_std__function_void_const_std__string_____id______(newValue)
|
|
865
|
+
return { () -> (String) -> Void in
|
|
866
|
+
let __wrappedFunction = bridge.wrap_Func_void_std__string(__unwrapped)
|
|
867
|
+
return { (__id: String) -> Void in
|
|
868
|
+
__wrappedFunction.call(std.string(__id))
|
|
819
869
|
}
|
|
820
870
|
}()
|
|
821
871
|
} else {
|
|
@@ -825,14 +875,14 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
825
875
|
}
|
|
826
876
|
}
|
|
827
877
|
|
|
828
|
-
public final var onPolygonPress: bridge.
|
|
878
|
+
public final var onPolygonPress: bridge.std__optional_std__function_void_const_std__string_____id______ {
|
|
829
879
|
@inline(__always)
|
|
830
880
|
get {
|
|
831
|
-
return { () -> bridge.
|
|
881
|
+
return { () -> bridge.std__optional_std__function_void_const_std__string_____id______ in
|
|
832
882
|
if let __unwrappedValue = self.__implementation.onPolygonPress {
|
|
833
|
-
return bridge.
|
|
834
|
-
let __closureWrapper =
|
|
835
|
-
return bridge.
|
|
883
|
+
return bridge.create_std__optional_std__function_void_const_std__string_____id______({ () -> bridge.Func_void_std__string in
|
|
884
|
+
let __closureWrapper = Func_void_std__string(__unwrappedValue)
|
|
885
|
+
return bridge.create_Func_void_std__string(__closureWrapper.toUnsafe())
|
|
836
886
|
}())
|
|
837
887
|
} else {
|
|
838
888
|
return .init()
|
|
@@ -841,19 +891,13 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
841
891
|
}
|
|
842
892
|
@inline(__always)
|
|
843
893
|
set {
|
|
844
|
-
self.__implementation.onPolygonPress = { () -> ((_ id: String
|
|
845
|
-
if bridge.
|
|
846
|
-
let __unwrapped = bridge.
|
|
847
|
-
return { () -> (String
|
|
848
|
-
let __wrappedFunction = bridge.
|
|
849
|
-
return { (__id: String
|
|
850
|
-
__wrappedFunction.call(
|
|
851
|
-
if let __unwrappedValue = __id {
|
|
852
|
-
return bridge.create_std__optional_std__string_(std.string(__unwrappedValue))
|
|
853
|
-
} else {
|
|
854
|
-
return .init()
|
|
855
|
-
}
|
|
856
|
-
}())
|
|
894
|
+
self.__implementation.onPolygonPress = { () -> ((_ id: String) -> Void)? in
|
|
895
|
+
if bridge.has_value_std__optional_std__function_void_const_std__string_____id______(newValue) {
|
|
896
|
+
let __unwrapped = bridge.get_std__optional_std__function_void_const_std__string_____id______(newValue)
|
|
897
|
+
return { () -> (String) -> Void in
|
|
898
|
+
let __wrappedFunction = bridge.wrap_Func_void_std__string(__unwrapped)
|
|
899
|
+
return { (__id: String) -> Void in
|
|
900
|
+
__wrappedFunction.call(std.string(__id))
|
|
857
901
|
}
|
|
858
902
|
}()
|
|
859
903
|
} else {
|
|
@@ -863,14 +907,14 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
863
907
|
}
|
|
864
908
|
}
|
|
865
909
|
|
|
866
|
-
public final var onCirclePress: bridge.
|
|
910
|
+
public final var onCirclePress: bridge.std__optional_std__function_void_const_std__string_____id______ {
|
|
867
911
|
@inline(__always)
|
|
868
912
|
get {
|
|
869
|
-
return { () -> bridge.
|
|
913
|
+
return { () -> bridge.std__optional_std__function_void_const_std__string_____id______ in
|
|
870
914
|
if let __unwrappedValue = self.__implementation.onCirclePress {
|
|
871
|
-
return bridge.
|
|
872
|
-
let __closureWrapper =
|
|
873
|
-
return bridge.
|
|
915
|
+
return bridge.create_std__optional_std__function_void_const_std__string_____id______({ () -> bridge.Func_void_std__string in
|
|
916
|
+
let __closureWrapper = Func_void_std__string(__unwrappedValue)
|
|
917
|
+
return bridge.create_Func_void_std__string(__closureWrapper.toUnsafe())
|
|
874
918
|
}())
|
|
875
919
|
} else {
|
|
876
920
|
return .init()
|
|
@@ -879,19 +923,13 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
879
923
|
}
|
|
880
924
|
@inline(__always)
|
|
881
925
|
set {
|
|
882
|
-
self.__implementation.onCirclePress = { () -> ((_ id: String
|
|
883
|
-
if bridge.
|
|
884
|
-
let __unwrapped = bridge.
|
|
885
|
-
return { () -> (String
|
|
886
|
-
let __wrappedFunction = bridge.
|
|
887
|
-
return { (__id: String
|
|
888
|
-
__wrappedFunction.call(
|
|
889
|
-
if let __unwrappedValue = __id {
|
|
890
|
-
return bridge.create_std__optional_std__string_(std.string(__unwrappedValue))
|
|
891
|
-
} else {
|
|
892
|
-
return .init()
|
|
893
|
-
}
|
|
894
|
-
}())
|
|
926
|
+
self.__implementation.onCirclePress = { () -> ((_ id: String) -> Void)? in
|
|
927
|
+
if bridge.has_value_std__optional_std__function_void_const_std__string_____id______(newValue) {
|
|
928
|
+
let __unwrapped = bridge.get_std__optional_std__function_void_const_std__string_____id______(newValue)
|
|
929
|
+
return { () -> (String) -> Void in
|
|
930
|
+
let __wrappedFunction = bridge.wrap_Func_void_std__string(__unwrapped)
|
|
931
|
+
return { (__id: String) -> Void in
|
|
932
|
+
__wrappedFunction.call(std.string(__id))
|
|
895
933
|
}
|
|
896
934
|
}()
|
|
897
935
|
} else {
|
|
@@ -901,14 +939,14 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
901
939
|
}
|
|
902
940
|
}
|
|
903
941
|
|
|
904
|
-
public final var onMarkerDragStart: bridge.
|
|
942
|
+
public final var onMarkerDragStart: bridge.std__optional_std__function_void_const_std__string_____id_____const_RNLatLng_____location______ {
|
|
905
943
|
@inline(__always)
|
|
906
944
|
get {
|
|
907
|
-
return { () -> bridge.
|
|
945
|
+
return { () -> bridge.std__optional_std__function_void_const_std__string_____id_____const_RNLatLng_____location______ in
|
|
908
946
|
if let __unwrappedValue = self.__implementation.onMarkerDragStart {
|
|
909
|
-
return bridge.
|
|
910
|
-
let __closureWrapper =
|
|
911
|
-
return bridge.
|
|
947
|
+
return bridge.create_std__optional_std__function_void_const_std__string_____id_____const_RNLatLng_____location______({ () -> bridge.Func_void_std__string_RNLatLng in
|
|
948
|
+
let __closureWrapper = Func_void_std__string_RNLatLng(__unwrappedValue)
|
|
949
|
+
return bridge.create_Func_void_std__string_RNLatLng(__closureWrapper.toUnsafe())
|
|
912
950
|
}())
|
|
913
951
|
} else {
|
|
914
952
|
return .init()
|
|
@@ -917,19 +955,13 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
917
955
|
}
|
|
918
956
|
@inline(__always)
|
|
919
957
|
set {
|
|
920
|
-
self.__implementation.onMarkerDragStart = { () -> ((_ id: String
|
|
921
|
-
if bridge.
|
|
922
|
-
let __unwrapped = bridge.
|
|
923
|
-
return { () -> (String
|
|
924
|
-
let __wrappedFunction = bridge.
|
|
925
|
-
return { (__id: String
|
|
926
|
-
__wrappedFunction.call(
|
|
927
|
-
if let __unwrappedValue = __id {
|
|
928
|
-
return bridge.create_std__optional_std__string_(std.string(__unwrappedValue))
|
|
929
|
-
} else {
|
|
930
|
-
return .init()
|
|
931
|
-
}
|
|
932
|
-
}(), __location)
|
|
958
|
+
self.__implementation.onMarkerDragStart = { () -> ((_ id: String, _ location: RNLatLng) -> Void)? in
|
|
959
|
+
if bridge.has_value_std__optional_std__function_void_const_std__string_____id_____const_RNLatLng_____location______(newValue) {
|
|
960
|
+
let __unwrapped = bridge.get_std__optional_std__function_void_const_std__string_____id_____const_RNLatLng_____location______(newValue)
|
|
961
|
+
return { () -> (String, RNLatLng) -> Void in
|
|
962
|
+
let __wrappedFunction = bridge.wrap_Func_void_std__string_RNLatLng(__unwrapped)
|
|
963
|
+
return { (__id: String, __location: RNLatLng) -> Void in
|
|
964
|
+
__wrappedFunction.call(std.string(__id), __location)
|
|
933
965
|
}
|
|
934
966
|
}()
|
|
935
967
|
} else {
|
|
@@ -939,14 +971,14 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
939
971
|
}
|
|
940
972
|
}
|
|
941
973
|
|
|
942
|
-
public final var onMarkerDrag: bridge.
|
|
974
|
+
public final var onMarkerDrag: bridge.std__optional_std__function_void_const_std__string_____id_____const_RNLatLng_____location______ {
|
|
943
975
|
@inline(__always)
|
|
944
976
|
get {
|
|
945
|
-
return { () -> bridge.
|
|
977
|
+
return { () -> bridge.std__optional_std__function_void_const_std__string_____id_____const_RNLatLng_____location______ in
|
|
946
978
|
if let __unwrappedValue = self.__implementation.onMarkerDrag {
|
|
947
|
-
return bridge.
|
|
948
|
-
let __closureWrapper =
|
|
949
|
-
return bridge.
|
|
979
|
+
return bridge.create_std__optional_std__function_void_const_std__string_____id_____const_RNLatLng_____location______({ () -> bridge.Func_void_std__string_RNLatLng in
|
|
980
|
+
let __closureWrapper = Func_void_std__string_RNLatLng(__unwrappedValue)
|
|
981
|
+
return bridge.create_Func_void_std__string_RNLatLng(__closureWrapper.toUnsafe())
|
|
950
982
|
}())
|
|
951
983
|
} else {
|
|
952
984
|
return .init()
|
|
@@ -955,19 +987,13 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
955
987
|
}
|
|
956
988
|
@inline(__always)
|
|
957
989
|
set {
|
|
958
|
-
self.__implementation.onMarkerDrag = { () -> ((_ id: String
|
|
959
|
-
if bridge.
|
|
960
|
-
let __unwrapped = bridge.
|
|
961
|
-
return { () -> (String
|
|
962
|
-
let __wrappedFunction = bridge.
|
|
963
|
-
return { (__id: String
|
|
964
|
-
__wrappedFunction.call(
|
|
965
|
-
if let __unwrappedValue = __id {
|
|
966
|
-
return bridge.create_std__optional_std__string_(std.string(__unwrappedValue))
|
|
967
|
-
} else {
|
|
968
|
-
return .init()
|
|
969
|
-
}
|
|
970
|
-
}(), __location)
|
|
990
|
+
self.__implementation.onMarkerDrag = { () -> ((_ id: String, _ location: RNLatLng) -> Void)? in
|
|
991
|
+
if bridge.has_value_std__optional_std__function_void_const_std__string_____id_____const_RNLatLng_____location______(newValue) {
|
|
992
|
+
let __unwrapped = bridge.get_std__optional_std__function_void_const_std__string_____id_____const_RNLatLng_____location______(newValue)
|
|
993
|
+
return { () -> (String, RNLatLng) -> Void in
|
|
994
|
+
let __wrappedFunction = bridge.wrap_Func_void_std__string_RNLatLng(__unwrapped)
|
|
995
|
+
return { (__id: String, __location: RNLatLng) -> Void in
|
|
996
|
+
__wrappedFunction.call(std.string(__id), __location)
|
|
971
997
|
}
|
|
972
998
|
}()
|
|
973
999
|
} else {
|
|
@@ -977,14 +1003,14 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
977
1003
|
}
|
|
978
1004
|
}
|
|
979
1005
|
|
|
980
|
-
public final var onMarkerDragEnd: bridge.
|
|
1006
|
+
public final var onMarkerDragEnd: bridge.std__optional_std__function_void_const_std__string_____id_____const_RNLatLng_____location______ {
|
|
981
1007
|
@inline(__always)
|
|
982
1008
|
get {
|
|
983
|
-
return { () -> bridge.
|
|
1009
|
+
return { () -> bridge.std__optional_std__function_void_const_std__string_____id_____const_RNLatLng_____location______ in
|
|
984
1010
|
if let __unwrappedValue = self.__implementation.onMarkerDragEnd {
|
|
985
|
-
return bridge.
|
|
986
|
-
let __closureWrapper =
|
|
987
|
-
return bridge.
|
|
1011
|
+
return bridge.create_std__optional_std__function_void_const_std__string_____id_____const_RNLatLng_____location______({ () -> bridge.Func_void_std__string_RNLatLng in
|
|
1012
|
+
let __closureWrapper = Func_void_std__string_RNLatLng(__unwrappedValue)
|
|
1013
|
+
return bridge.create_Func_void_std__string_RNLatLng(__closureWrapper.toUnsafe())
|
|
988
1014
|
}())
|
|
989
1015
|
} else {
|
|
990
1016
|
return .init()
|
|
@@ -993,19 +1019,13 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
993
1019
|
}
|
|
994
1020
|
@inline(__always)
|
|
995
1021
|
set {
|
|
996
|
-
self.__implementation.onMarkerDragEnd = { () -> ((_ id: String
|
|
997
|
-
if bridge.
|
|
998
|
-
let __unwrapped = bridge.
|
|
999
|
-
return { () -> (String
|
|
1000
|
-
let __wrappedFunction = bridge.
|
|
1001
|
-
return { (__id: String
|
|
1002
|
-
__wrappedFunction.call(
|
|
1003
|
-
if let __unwrappedValue = __id {
|
|
1004
|
-
return bridge.create_std__optional_std__string_(std.string(__unwrappedValue))
|
|
1005
|
-
} else {
|
|
1006
|
-
return .init()
|
|
1007
|
-
}
|
|
1008
|
-
}(), __location)
|
|
1022
|
+
self.__implementation.onMarkerDragEnd = { () -> ((_ id: String, _ location: RNLatLng) -> Void)? in
|
|
1023
|
+
if bridge.has_value_std__optional_std__function_void_const_std__string_____id_____const_RNLatLng_____location______(newValue) {
|
|
1024
|
+
let __unwrapped = bridge.get_std__optional_std__function_void_const_std__string_____id_____const_RNLatLng_____location______(newValue)
|
|
1025
|
+
return { () -> (String, RNLatLng) -> Void in
|
|
1026
|
+
let __wrappedFunction = bridge.wrap_Func_void_std__string_RNLatLng(__unwrapped)
|
|
1027
|
+
return { (__id: String, __location: RNLatLng) -> Void in
|
|
1028
|
+
__wrappedFunction.call(std.string(__id), __location)
|
|
1009
1029
|
}
|
|
1010
1030
|
}()
|
|
1011
1031
|
} else {
|
|
@@ -1079,6 +1099,166 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
1079
1099
|
}
|
|
1080
1100
|
}
|
|
1081
1101
|
|
|
1102
|
+
public final var onInfoWindowPress: bridge.std__optional_std__function_void_const_std__string_____id______ {
|
|
1103
|
+
@inline(__always)
|
|
1104
|
+
get {
|
|
1105
|
+
return { () -> bridge.std__optional_std__function_void_const_std__string_____id______ in
|
|
1106
|
+
if let __unwrappedValue = self.__implementation.onInfoWindowPress {
|
|
1107
|
+
return bridge.create_std__optional_std__function_void_const_std__string_____id______({ () -> bridge.Func_void_std__string in
|
|
1108
|
+
let __closureWrapper = Func_void_std__string(__unwrappedValue)
|
|
1109
|
+
return bridge.create_Func_void_std__string(__closureWrapper.toUnsafe())
|
|
1110
|
+
}())
|
|
1111
|
+
} else {
|
|
1112
|
+
return .init()
|
|
1113
|
+
}
|
|
1114
|
+
}()
|
|
1115
|
+
}
|
|
1116
|
+
@inline(__always)
|
|
1117
|
+
set {
|
|
1118
|
+
self.__implementation.onInfoWindowPress = { () -> ((_ id: String) -> Void)? in
|
|
1119
|
+
if bridge.has_value_std__optional_std__function_void_const_std__string_____id______(newValue) {
|
|
1120
|
+
let __unwrapped = bridge.get_std__optional_std__function_void_const_std__string_____id______(newValue)
|
|
1121
|
+
return { () -> (String) -> Void in
|
|
1122
|
+
let __wrappedFunction = bridge.wrap_Func_void_std__string(__unwrapped)
|
|
1123
|
+
return { (__id: String) -> Void in
|
|
1124
|
+
__wrappedFunction.call(std.string(__id))
|
|
1125
|
+
}
|
|
1126
|
+
}()
|
|
1127
|
+
} else {
|
|
1128
|
+
return nil
|
|
1129
|
+
}
|
|
1130
|
+
}()
|
|
1131
|
+
}
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
public final var onInfoWindowClose: bridge.std__optional_std__function_void_const_std__string_____id______ {
|
|
1135
|
+
@inline(__always)
|
|
1136
|
+
get {
|
|
1137
|
+
return { () -> bridge.std__optional_std__function_void_const_std__string_____id______ in
|
|
1138
|
+
if let __unwrappedValue = self.__implementation.onInfoWindowClose {
|
|
1139
|
+
return bridge.create_std__optional_std__function_void_const_std__string_____id______({ () -> bridge.Func_void_std__string in
|
|
1140
|
+
let __closureWrapper = Func_void_std__string(__unwrappedValue)
|
|
1141
|
+
return bridge.create_Func_void_std__string(__closureWrapper.toUnsafe())
|
|
1142
|
+
}())
|
|
1143
|
+
} else {
|
|
1144
|
+
return .init()
|
|
1145
|
+
}
|
|
1146
|
+
}()
|
|
1147
|
+
}
|
|
1148
|
+
@inline(__always)
|
|
1149
|
+
set {
|
|
1150
|
+
self.__implementation.onInfoWindowClose = { () -> ((_ id: String) -> Void)? in
|
|
1151
|
+
if bridge.has_value_std__optional_std__function_void_const_std__string_____id______(newValue) {
|
|
1152
|
+
let __unwrapped = bridge.get_std__optional_std__function_void_const_std__string_____id______(newValue)
|
|
1153
|
+
return { () -> (String) -> Void in
|
|
1154
|
+
let __wrappedFunction = bridge.wrap_Func_void_std__string(__unwrapped)
|
|
1155
|
+
return { (__id: String) -> Void in
|
|
1156
|
+
__wrappedFunction.call(std.string(__id))
|
|
1157
|
+
}
|
|
1158
|
+
}()
|
|
1159
|
+
} else {
|
|
1160
|
+
return nil
|
|
1161
|
+
}
|
|
1162
|
+
}()
|
|
1163
|
+
}
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
public final var onInfoWindowLongPress: bridge.std__optional_std__function_void_const_std__string_____id______ {
|
|
1167
|
+
@inline(__always)
|
|
1168
|
+
get {
|
|
1169
|
+
return { () -> bridge.std__optional_std__function_void_const_std__string_____id______ in
|
|
1170
|
+
if let __unwrappedValue = self.__implementation.onInfoWindowLongPress {
|
|
1171
|
+
return bridge.create_std__optional_std__function_void_const_std__string_____id______({ () -> bridge.Func_void_std__string in
|
|
1172
|
+
let __closureWrapper = Func_void_std__string(__unwrappedValue)
|
|
1173
|
+
return bridge.create_Func_void_std__string(__closureWrapper.toUnsafe())
|
|
1174
|
+
}())
|
|
1175
|
+
} else {
|
|
1176
|
+
return .init()
|
|
1177
|
+
}
|
|
1178
|
+
}()
|
|
1179
|
+
}
|
|
1180
|
+
@inline(__always)
|
|
1181
|
+
set {
|
|
1182
|
+
self.__implementation.onInfoWindowLongPress = { () -> ((_ id: String) -> Void)? in
|
|
1183
|
+
if bridge.has_value_std__optional_std__function_void_const_std__string_____id______(newValue) {
|
|
1184
|
+
let __unwrapped = bridge.get_std__optional_std__function_void_const_std__string_____id______(newValue)
|
|
1185
|
+
return { () -> (String) -> Void in
|
|
1186
|
+
let __wrappedFunction = bridge.wrap_Func_void_std__string(__unwrapped)
|
|
1187
|
+
return { (__id: String) -> Void in
|
|
1188
|
+
__wrappedFunction.call(std.string(__id))
|
|
1189
|
+
}
|
|
1190
|
+
}()
|
|
1191
|
+
} else {
|
|
1192
|
+
return nil
|
|
1193
|
+
}
|
|
1194
|
+
}()
|
|
1195
|
+
}
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
public final var onMyLocationPress: bridge.std__optional_std__function_void_const_RNLocation_____location______ {
|
|
1199
|
+
@inline(__always)
|
|
1200
|
+
get {
|
|
1201
|
+
return { () -> bridge.std__optional_std__function_void_const_RNLocation_____location______ in
|
|
1202
|
+
if let __unwrappedValue = self.__implementation.onMyLocationPress {
|
|
1203
|
+
return bridge.create_std__optional_std__function_void_const_RNLocation_____location______({ () -> bridge.Func_void_RNLocation in
|
|
1204
|
+
let __closureWrapper = Func_void_RNLocation(__unwrappedValue)
|
|
1205
|
+
return bridge.create_Func_void_RNLocation(__closureWrapper.toUnsafe())
|
|
1206
|
+
}())
|
|
1207
|
+
} else {
|
|
1208
|
+
return .init()
|
|
1209
|
+
}
|
|
1210
|
+
}()
|
|
1211
|
+
}
|
|
1212
|
+
@inline(__always)
|
|
1213
|
+
set {
|
|
1214
|
+
self.__implementation.onMyLocationPress = { () -> ((_ location: RNLocation) -> Void)? in
|
|
1215
|
+
if bridge.has_value_std__optional_std__function_void_const_RNLocation_____location______(newValue) {
|
|
1216
|
+
let __unwrapped = bridge.get_std__optional_std__function_void_const_RNLocation_____location______(newValue)
|
|
1217
|
+
return { () -> (RNLocation) -> Void in
|
|
1218
|
+
let __wrappedFunction = bridge.wrap_Func_void_RNLocation(__unwrapped)
|
|
1219
|
+
return { (__location: RNLocation) -> Void in
|
|
1220
|
+
__wrappedFunction.call(__location)
|
|
1221
|
+
}
|
|
1222
|
+
}()
|
|
1223
|
+
} else {
|
|
1224
|
+
return nil
|
|
1225
|
+
}
|
|
1226
|
+
}()
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
public final var onMyLocationButtonPress: bridge.std__optional_std__function_void_bool____pressed______ {
|
|
1231
|
+
@inline(__always)
|
|
1232
|
+
get {
|
|
1233
|
+
return { () -> bridge.std__optional_std__function_void_bool____pressed______ in
|
|
1234
|
+
if let __unwrappedValue = self.__implementation.onMyLocationButtonPress {
|
|
1235
|
+
return bridge.create_std__optional_std__function_void_bool____pressed______({ () -> bridge.Func_void_bool in
|
|
1236
|
+
let __closureWrapper = Func_void_bool(__unwrappedValue)
|
|
1237
|
+
return bridge.create_Func_void_bool(__closureWrapper.toUnsafe())
|
|
1238
|
+
}())
|
|
1239
|
+
} else {
|
|
1240
|
+
return .init()
|
|
1241
|
+
}
|
|
1242
|
+
}()
|
|
1243
|
+
}
|
|
1244
|
+
@inline(__always)
|
|
1245
|
+
set {
|
|
1246
|
+
self.__implementation.onMyLocationButtonPress = { () -> ((_ pressed: Bool) -> Void)? in
|
|
1247
|
+
if bridge.has_value_std__optional_std__function_void_bool____pressed______(newValue) {
|
|
1248
|
+
let __unwrapped = bridge.get_std__optional_std__function_void_bool____pressed______(newValue)
|
|
1249
|
+
return { () -> (Bool) -> Void in
|
|
1250
|
+
let __wrappedFunction = bridge.wrap_Func_void_bool(__unwrapped)
|
|
1251
|
+
return { (__pressed: Bool) -> Void in
|
|
1252
|
+
__wrappedFunction.call(__pressed)
|
|
1253
|
+
}
|
|
1254
|
+
}()
|
|
1255
|
+
} else {
|
|
1256
|
+
return nil
|
|
1257
|
+
}
|
|
1258
|
+
}()
|
|
1259
|
+
}
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1082
1262
|
public final var onCameraChangeStart: bridge.std__optional_std__function_void_const_RNRegion_____region_____const_RNCamera_____camera_____bool____isGesture______ {
|
|
1083
1263
|
@inline(__always)
|
|
1084
1264
|
get {
|
|
@@ -1176,6 +1356,28 @@ open class HybridRNGoogleMapsPlusViewSpec_cxx {
|
|
|
1176
1356
|
}
|
|
1177
1357
|
|
|
1178
1358
|
// Methods
|
|
1359
|
+
@inline(__always)
|
|
1360
|
+
public final func showMarkerInfoWindow(id: std.string) -> bridge.Result_void_ {
|
|
1361
|
+
do {
|
|
1362
|
+
try self.__implementation.showMarkerInfoWindow(id: String(id))
|
|
1363
|
+
return bridge.create_Result_void_()
|
|
1364
|
+
} catch (let __error) {
|
|
1365
|
+
let __exceptionPtr = __error.toCpp()
|
|
1366
|
+
return bridge.create_Result_void_(__exceptionPtr)
|
|
1367
|
+
}
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
@inline(__always)
|
|
1371
|
+
public final func hideMarkerInfoWindow(id: std.string) -> bridge.Result_void_ {
|
|
1372
|
+
do {
|
|
1373
|
+
try self.__implementation.hideMarkerInfoWindow(id: String(id))
|
|
1374
|
+
return bridge.create_Result_void_()
|
|
1375
|
+
} catch (let __error) {
|
|
1376
|
+
let __exceptionPtr = __error.toCpp()
|
|
1377
|
+
return bridge.create_Result_void_(__exceptionPtr)
|
|
1378
|
+
}
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1179
1381
|
@inline(__always)
|
|
1180
1382
|
public final func setCamera(camera: RNCamera, animated: bridge.std__optional_bool_, durationMs: bridge.std__optional_double_) -> bridge.Result_void_ {
|
|
1181
1383
|
do {
|