해결된 질문
작성
·
189
·
수정됨
1
강의에 나오는것처럼 진행했을때
import {LatLng, MapMarkerProps} from 'react-native-maps';
declare module 'react-native-maps' {
export interface MyMapMarkerProps extends MapMarkerProps {
coordinate?: LatLng;
}
}
'MyMapMarkerProps' 인터페이스가 'MapMarkerProps' 인터페이스를 잘못 확장합니다.
'MyMapMarkerProps' 형식은 '{ anchor?: Point | undefined; calloutAnchor?: Point | undefined; calloutOffset?: Point | undefined; centerOffset?: Point | undefined; coordinate: LatLng; ... 22 more ...; zIndex?: number | undefined; }' 형식에 할당할 수 없습니다.
'coordinate' 속성의 형식이 호환되지 않습니다.
'LatLng | undefined' 형식은 'LatLng' 형식에 할당할 수 없습니다.
'undefined' 형식은 'LatLng' 형식에 할당할 수 없습니다.ts(2430)
⚠ Error (TS2430) |
MyMapMarkerProps
인터페이스가 MapMarkerProps
인터페이스를 잘못 확장합니다.
MyMapMarkerProps
형식은 { anchor?: Point | undefined; calloutAnchor?: Point | undefined; calloutOffset?: Point | undefined; centerOffset?: Point | undefined; coordinate: LatLng; ... 22 more ...; zIndex?: number | undefined; }
형식에 할당할 수 없습니다.
동일하게 ?을 넣을 수없는 에러가 생겨서
import {LatLng, MapMarkerProps} from 'react-native-maps';
declare module 'react-native-maps' {
export interface MyMapMarkerProps extends Partial<MapMarkerProps> {
coordinate?: LatLng;
}
}
우선 아래와 같이 처리해 보았습니다만
CustomMarker.tsx에서 MyMapMarkerProps를 못불러오는 문제가 있습니다.