forked from react-native-maps/react-native-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from nammayatri/scroll-map
Scroll map
- Loading branch information
Showing
62 changed files
with
4,212 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,7 +62,6 @@ yarn-error.log | |
.vscode | ||
|
||
# ts outDir | ||
lib/ | ||
|
||
example/vendor/bundle/ | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { Animated } from 'react-native'; | ||
import { Region } from './sharedTypes'; | ||
declare const AnimatedWithChildren: any; | ||
type Props = Partial<Region> | undefined; | ||
export default class AnimatedMapRegion extends AnimatedWithChildren { | ||
constructor(valueIn?: Props); | ||
setValue(value: Region): void; | ||
setOffset(offset: Region): void; | ||
flattenOffset(): void; | ||
private __getValue; | ||
private __attach; | ||
private __detach; | ||
stopAnimation(callback: (region: Region) => void): void; | ||
addListener(callback: (region: Region) => void): string; | ||
removeListener(id: string): void; | ||
spring(config: Animated.SpringAnimationConfig & Region): Animated.CompositeAnimation; | ||
timing(config: Animated.TimingAnimationConfig & Region): Animated.CompositeAnimation; | ||
} | ||
export {}; |
Oops, something went wrong.