import React from "react"; import { StyleSheet, View } from "react-native"; // Cek versi >= 10.x gunakan ini import { MapView, Camera, PointAnnotation } from "@maplibre/maplibre-react-native"; const MAP_STYLE = "https://tiles.openfreemap.org/styles/liberty"; export default function MapsView2() { return ( ); } const styles = StyleSheet.create({ container: { flex: 1 }, map: { flex: 1 }, marker: { width: 16, height: 16, borderRadius: 8, backgroundColor: "red", }, });