Add: - screens/Maps/ Fix: - android/app/src/main/AndroidManifest.xml - app.config.js - app/(application)/(user)/maps/index.tsx - bun.lock - ios/HIPMIBadungConnect.xcodeproj/project.pbxproj - ios/HIPMIBadungConnect/Info.plist - ios/Podfile.lock - package.json ### No Issue
22 lines
516 B
TypeScript
22 lines
516 B
TypeScript
import MapsView from "@/screens/Maps/MapsView";
|
|
import MapsView2 from "@/screens/Maps/MapsView2";
|
|
import { Text, View } from "react-native";
|
|
|
|
export interface LocationItem {
|
|
id: string | number;
|
|
latitude: number;
|
|
longitude: number;
|
|
name: string;
|
|
imageId?: string;
|
|
}
|
|
|
|
export default function Maps() {
|
|
return (
|
|
<>
|
|
<MapsView />
|
|
{/* <MapsView2 />, */}
|
|
{/* <View style={{ flex: 1, backgroundColor: "gray" }}><Text style={{ color: "white" }}>Map disabled</Text></View> */}
|
|
</>
|
|
);
|
|
}
|