tsx
import Mapa from 'react-native-mapa';
// or import { MapView, Camera } from 'react-native-mapa';
const models = {
    car: require('../assets/models/sportcar.glb'),
};
<Mapa.MapView>
    <Mapa.Models models={models} />
    <Mapa.GeoJSONSource url={gejson} id="geojson-id">
        <Mapa.ModelLayer
            id="model-layer-id"
            sourceId="geojson-id"
            style={style}
        />
    </Mapa.GeoJSONSource>
</Mapa.MapView>ModelLayer 
Props 
id 
id:
string
Unique identifier for the layer
sourceLayerID? 
optionalsourceLayerID:string
Source style layer mapping
existing? 
optionalexisting:boolean
If the layer ID already exists, don't create a new layer
sourceId? 
optionalsourceId:string
Source identifier
layerIndex? 
optionallayerIndex:number
Insert layer at specified index
aboveLayerID? 
optionalaboveLayerID:string
Insert above the specified layer ID
belowLayerID? 
optionalbelowLayerID:string
Insert below the specified layer ID
filter? 
optionalfilter:Expression
Mapbox filter expression
minZoom? 
optionalminZoom:number
Minimum zoom level for layer visibility
maxZoom? 
optionalmaxZoom:number
Maximum zoom level for layer visibility
slot? 
optionalslot:"bottom"|"middle"|"top"
style 
style:
ModelLayerStyleProps