diff --git a/src/components/map/MyLocationMap.tsx b/src/components/map/MyLocationMap.tsx index daf12df..9e811b7 100644 --- a/src/components/map/MyLocationMap.tsx +++ b/src/components/map/MyLocationMap.tsx @@ -6,24 +6,27 @@ import S from './MyLocationMap.style'; import {Dimensions} from 'react-native'; const windowWidth = Dimensions.get('window').width; type RootStackParamList = { - Detail: {screen: 'Market'; params: {marketId: string}}; + Detail: {screen: 'Market'; params: {marketId: number}}; }; const MyLocationMap = ({ cords, }: { cords: { marketName: string; - marketId: string; + marketId: number; latitude: number; longitude: number; }[]; }) => { + console.log(cords); const navigation = useNavigation>(); - const handleMarkerClick = (marketId: string) => { - navigation.navigate('Detail', { - screen: 'Market', - params: {marketId}, - }); + const handleMarkerClick = (marketId: number) => { + if (marketId !== -1) { + navigation.navigate('Detail', { + screen: 'Market', + params: {marketId}, + }); + } }; return ( diff --git a/src/screens/FeedScreen/index.tsx b/src/screens/FeedScreen/index.tsx index 7738ee7..63ca24c 100644 --- a/src/screens/FeedScreen/index.tsx +++ b/src/screens/FeedScreen/index.tsx @@ -115,12 +115,12 @@ const FeedScreen = ({navigation}: Props) => { }; const navigateMap = () => { - if (!location) { - Alert.alert( - '위치 정보가 없어 기본가게들을 열람합니다. 권한을 허용해주세요', - ); - return; - } + // if (!location) { + // Alert.alert( + // '위치 정보가 없어 기본가게들을 열람합니다. 권한을 허용해주세요', + // ); + // return; + // } if (!marketList || !marketList.length) { Alert.alert('가게 목록이 없습니다.'); return; @@ -128,7 +128,7 @@ const FeedScreen = ({navigation}: Props) => { const validCords = [ { marketName: '현재위치', - marketId: '-1', + marketId: -1, latitude: location?.userLatitude || 37.582831666666664, longitude: location?.userLongitude || 127.06107333333334, }, @@ -146,7 +146,7 @@ const FeedScreen = ({navigation}: Props) => { ) .map(market => ({ marketName: market.name, - marketId: market.id.toString(), + marketId: market.id, latitude: market.latitude, longitude: market.longitude, })), diff --git a/src/types/StackNavigationType.ts b/src/types/StackNavigationType.ts index 58c58f0..a83375b 100644 --- a/src/types/StackNavigationType.ts +++ b/src/types/StackNavigationType.ts @@ -30,7 +30,7 @@ export interface DetailStackParamList extends ParamListBase { Map: { cords: { marketName: string; - marketId: string; + marketId: number; latitude: number; longitude: number; }[];