Created
January 22, 2019 20:19
-
-
Save danvk/c07636193f48e8087afb6e3705261698 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const inferPick = <V extends {}>() => <K extends keyof V>(x: Pick<V, K>): Pick<V, K> => x; | |
const INIT_VIEW = inferPick<MapProps>()({ | |
center: [-73.991284, 40.741263], | |
zoom: [14.5], | |
pitch: [45], | |
bearing: [-17.6], | |
style: "mapbox://styles/mapbox/streets-v9" | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment