- app/(application)/(user)/maps/index.tsx - screens/Maps/MapsView2.tsx New Maps Component - screens/Maps/DrawerMaps.tsx Docs / Backup - docs/PODS.back ### No Issue
26 lines
604 B
TypeScript
26 lines
604 B
TypeScript
import MapsView2 from "@/screens/Maps/MapsView2";
|
|
|
|
export interface LocationItem {
|
|
id: string | number;
|
|
latitude: number;
|
|
longitude: number;
|
|
name: string;
|
|
imageId?: string;
|
|
}
|
|
|
|
export default function Maps() {
|
|
return (
|
|
<>
|
|
{/* <Stack.Screen
|
|
options={{
|
|
title: "Maps",
|
|
headerLeft: () => <BackButton />,
|
|
}}
|
|
/> */}
|
|
{/* {Platform.OS === "ios" ? <MapsView /> : <MapsView2 />} */}
|
|
<MapsView2 />
|
|
{/* <View style={{ flex: 1, backgroundColor: "gray" }}><Text style={{ color: "white" }}>Map disabled</Text></View> */}
|
|
</>
|
|
);
|
|
}
|