File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
src/Fable.ReactGoogleMaps Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,8 @@ module Props =
129129 | OnZoomChanged of ( unit -> unit )
130130 | OnIdle of ( unit -> unit )
131131 | OnClick of ( GoogleMapsMouseEvent -> unit )
132- | Markers of React.ReactElement list
132+ | Markers of React.ReactElement seq
133+ | [<CompiledName( " Markers" ) >] Clusterer of React.ReactElement
133134 | MapLoadingContainer of string
134135 | MapContainer of string
135136 | Options of obj
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ let myMap =
6767 googleMap [
6868 MapProperties.ApiKey googleMapApiKey
6969 // ..
70- MapProperties.Markers (unbox markers) ]
70+ MapProperties.Markers markers ]
7171```
7272
7373## MarkerClusterer
@@ -87,5 +87,5 @@ let myMap =
8787 googleMap [
8888 MapProperties.ApiKey googleMapApiKey
8989 // ..
90- MapProperties.Markers clustered ]
90+ MapProperties.Clusterer clustered ]
9191```
Original file line number Diff line number Diff line change 1- ### 0.2.2
1+ ### 0.3.0
22
33* Initial release
You can’t perform that action at this time.
0 commit comments