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.
TestID's for e2e automation (react-native-maps#2253)
* re-applying pull request 1170 It seems that the following pull react-native-maps#1170 request has been abandoned, but testID is still required if one wants to make e2e tests react-native-maps#2252 * Update App.js
- Loading branch information
1 parent
ce80b43
commit 35e9643
Showing
5 changed files
with
93 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import React from 'react'; | ||
import { | ||
StyleSheet, | ||
View, | ||
Dimensions, | ||
} from 'react-native'; | ||
|
||
import MapView from 'react-native-maps'; | ||
|
||
const { width, height } = Dimensions.get('window'); | ||
|
||
const ASPECT_RATIO = width / height; | ||
const LATITUDE = 37.78825; | ||
const LONGITUDE = -122.4324; | ||
const LATITUDE_DELTA = 0.0922; | ||
const LONGITUDE_DELTA = LATITUDE_DELTA * ASPECT_RATIO; | ||
const SPACE = 0.01; | ||
|
||
function log(eventName, e) { | ||
console.log(eventName, e.nativeEvent); | ||
} | ||
|
||
class MarkerTypes extends React.Component { | ||
constructor(props) { | ||
super(props); | ||
|
||
this.state = { | ||
a: { | ||
latitude: LATITUDE + SPACE, | ||
longitude: LONGITUDE + SPACE, | ||
}, | ||
}; | ||
} | ||
|
||
render() { | ||
return ( | ||
<View style={styles.container} accessible> | ||
<MapView | ||
provider={this.props.provider} | ||
style={styles.map} | ||
initialRegion={{ | ||
latitude: LATITUDE, | ||
longitude: LONGITUDE, | ||
latitudeDelta: LATITUDE_DELTA, | ||
longitudeDelta: LONGITUDE_DELTA, | ||
}} | ||
> | ||
<MapView.Marker | ||
testID="marker" | ||
coordinate={this.state.a} | ||
onSelect={(e) => log('onSelect', e)} | ||
onDrag={(e) => log('onDrag', e)} | ||
onDragStart={(e) => log('onDragStart', e)} | ||
onDragEnd={(e) => log('onDragEnd', e)} | ||
onPress={(e) => log('onPress', e)} | ||
draggable | ||
/> | ||
</MapView> | ||
</View> | ||
); | ||
} | ||
} | ||
|
||
MarkerTypes.propTypes = { | ||
provider: MapView.ProviderPropType, | ||
}; | ||
|
||
const styles = StyleSheet.create({ | ||
container: { | ||
...StyleSheet.absoluteFillObject, | ||
justifyContent: 'flex-end', | ||
alignItems: 'center', | ||
}, | ||
map: { | ||
...StyleSheet.absoluteFillObject, | ||
}, | ||
}); | ||
|
||
module.exports = MarkerTypes; | ||
|
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