From 4eb3526d573cdcd5f516708f938a516141056125 Mon Sep 17 00:00:00 2001 From: liodali <16631886+liodali@users.noreply.github.com> Date: Sun, 19 May 2024 17:11:18 +0200 Subject: [PATCH] fix bug on creating CircleOSM 527 --- ios/Classes/map_view/osm_map.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/Classes/map_view/osm_map.swift b/ios/Classes/map_view/osm_map.swift index beef1904..396d06d0 100644 --- a/ios/Classes/map_view/osm_map.swift +++ b/ios/Classes/map_view/osm_map.swift @@ -592,7 +592,7 @@ class MapCoreOSMView : NSObject, FlutterPlatformView, CLLocationManagerDelegate, case .Rect: shape = RectShapeOSM.fromMap(json: rectJson) case .Circle: - shape = RectShapeOSM.fromMap(json: rectJson) + shape = CircleOSM.fromMap(json: rectJson) default: shape = RectShapeOSM.fromMap(json: rectJson) }