import { TextCustom, ViewWrapper } from "@/components"; import Mapbox from "@rnmapbox/maps"; import { View } from "react-native"; // Nonaktifkan telemetry (opsional, untuk privasi) Mapbox.setTelemetryEnabled(false); // Gunakan style OSM gratis const MAP_STYLE_URL = "https://tiles.stadiamaps.com/styles/osm_bright.json"; // Atau gunakan MapLibre default: // const MAP_STYLE_URL = 'https://demotiles.maplibre.org/style.json'; export default function MapsView2() { return ( <> ); }