diff --git a/ios/RNMBX/RNMBXMarkerView.swift b/ios/RNMBX/RNMBXMarkerView.swift index 4eda07c10..8fcd50226 100644 --- a/ios/RNMBX/RNMBXMarkerView.swift +++ b/ios/RNMBX/RNMBXMarkerView.swift @@ -22,7 +22,6 @@ class RNMBXMarkerViewParentViewAnnotation : UIView { if actSize.width != size.width || actSize.height != size.height { let dx = ((size.width/2.0) - newOffset.dx) - ((actSize.width/2.0) - oldOffset.dx) let dy = ((size.height/2.0) + newOffset.dy) - ((actSize.height/2.0) + oldOffset.dy) - print(" => size=\(size) actSize=\(actSize) newOffset=\(newOffset) oldOffset=\(oldOffset) dx=\(dx) dy=\(dy)") var frame = self.frame frame = frame.offsetBy(dx: -dx, dy: -dy) frame.size = size diff --git a/ios/RNMBX/RNMBXViewport.swift b/ios/RNMBX/RNMBXViewport.swift index 3aa2ce8a4..54a9804ff 100644 --- a/ios/RNMBX/RNMBXViewport.swift +++ b/ios/RNMBX/RNMBXViewport.swift @@ -11,11 +11,7 @@ open class RNMBXViewport : UIView, RNMBXMapComponent, ViewportStatusObserver { // MARK: React properties @objc - public var onStatusChanged: RCTBubblingEventBlock? = nil { - didSet { - print(" => setReactOnMapChange") - } - } + public var onStatusChanged: RCTBubblingEventBlock? = nil @objc public var hasStatusChanged: Bool = false { diff --git a/src/components/Viewport.tsx b/src/components/Viewport.tsx index 7625c73ab..a84722933 100644 --- a/src/components/Viewport.tsx +++ b/src/components/Viewport.tsx @@ -232,7 +232,6 @@ class NativeCommands { args: NativeArg[], ): Promise { const handle = findNodeHandle(nativeRef); - console.log(' => handle', handle); if (handle) { return ( this.module[name] as (