-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d37b1cf
commit b7019d9
Showing
9 changed files
with
132 additions
and
126 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
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 |
---|---|---|
@@ -1,8 +1,21 @@ | ||
import type { MaplibreStyle, StylemakerOptions } from './lib/types.js'; | ||
|
||
export type { MaplibreStyle, TileJSONSpecification, TileJSONSpecificationRaster, TileJSONSpecificationVector } from './lib/types.js'; | ||
import Colorful from './style/colorful.js'; | ||
export function colorful(options?: StylemakerOptions<Colorful>): MaplibreStyle { | ||
return new Colorful().build(options); | ||
} | ||
|
||
import Graybeard from './style/graybeard.js'; | ||
export function graybeard(options?: StylemakerOptions<Graybeard>): MaplibreStyle { | ||
return new Graybeard().build(options); | ||
} | ||
|
||
import Neutrino from './style/neutrino.js'; | ||
export function neutrino(options?: StylemakerOptions<Neutrino>): MaplibreStyle { | ||
return new Neutrino().build(options); | ||
} | ||
|
||
export { default as guessStyle } from './lib/style_guesser.js'; | ||
|
||
export { default as Colorful } from './style/colorful.js'; | ||
export { default as Graybeard } from './style/graybeard.js'; | ||
export { default as Neutrino } from './style/neutrino.js'; | ||
export type { TileJSONSpecification, TileJSONSpecificationRaster, TileJSONSpecificationVector } from './lib/types.js'; | ||
|
||
export { default as guessStyle } from './lib/style_guesser.js'; |
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
Oops, something went wrong.