Skip to content

Commit

Permalink
fix bug on creating CircleOSM 527
Browse files Browse the repository at this point in the history
  • Loading branch information
liodali committed May 19, 2024
1 parent dfa0072 commit 4eb3526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/Classes/map_view/osm_map.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 4eb3526

Please sign in to comment.