-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DEV-9325] Custom Map Layers (#1706)
* [DEV-9325] use core ViewPort type * [DEV-9325] start work on leaflet map contributions * [DEV-9325] update attribution lines * [DEV-9325] Continue Map API Work * [DEV-9325] add missing files * [DEV-9325] reset buttons * [DEV-9325] Reset buttons * [DEV-9325] remove leaflet data * [DEV-9325] add fixes * [DEV-9325] adjust type
- Loading branch information
Showing
10 changed files
with
1,065 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import type { Meta, StoryObj } from '@storybook/react' | ||
import CdcMap from '../CdcMap' | ||
import googleMapConfig from './_mock/google-map.json' | ||
import { editConfigKeys } from '@cdc/chart/src/helpers/configHelpers' | ||
|
||
const meta: Meta<typeof CdcMap> = { | ||
title: 'Components/Templates/Map', | ||
component: CdcMap | ||
} | ||
|
||
type Story = StoryObj<typeof CdcMap> | ||
|
||
export const Google_Map: Story = { | ||
args: { | ||
config: googleMapConfig | ||
} | ||
} | ||
|
||
export default meta |
Oops, something went wrong.