import React from "react"; import { View, StyleSheet } from "react-native"; import MapView, { Marker } from "react-native-maps"; interface LocationMapProps { latitude: number; longitude: number; } const LocationMap: React.FC = ({ latitude, longitude }) => { const region = { latitude, longitude, latitudeDelta: 0.01, longitudeDelta: 0.01, }; return ( ); }; const styles = StyleSheet.create({ container: { flex: 1, borderRadius: 10, overflow: "hidden", }, map: { width: "100%", height: "100%", }, }); export default LocationMap;