0
반응 네이티브에서 내 프로젝트에 문제가 있습니다. iOS에서는 작동하지만 Android에서는 완전히 비어있어 아무 것도 표시되지 않습니다. 안드로이드에Android의지도보기가 비어 있습니다.
class Three extends React.Component{
getInitialState() {
return {
initialPosition: 0,
lastPosition: 0,
annotations: [{
latitude: 23,
longitude: 121,
}],
};
}
render() {
return (
<View style={styles.container}>
<MapView
style={styles.map}
region={{
latitude: 25.6589,
longitude: 36.5487,
latitudeDelta: 0.00922,
longitudeDelta: 0.00421,}}
showsUserLocation={true}
/>
</View>
);
}
regionChange(region){
this.setState({
annotations:[{
latitude:region.latitude,
longitude:region.longitude,
}]
});
}
}
}