Live component development with hot reload

@fieldflow360/org-ui

Active tab
map-components

Map Components

LocationPicker usage

<LocationPicker
  location={location}
  onLocationChange={setLocation}
  required
/>

Location*

Location: 37.789670, -122.394760

LocationPickerMap usage

<LocationPickerMap
  location={location}
  onMapPick={(lng, lat) =>
    setLocation({ type: "Point", coordinates: [lng, lat] })
  }
  height={300}
/>

MapZoomControls usage

<MapZoomControls
  onZoomIn={() => setZoom((z) => z + 1)}
  onZoomOut={() => setZoom((z) => z - 1)}
/>
Zoom preview value: 12