Я пытаюсь интегрировать пакет, известный как react-native-simple-maps. Я прикрепил код ниже.
import React, { Component } from "react"
import ReactDOM from "react-dom"
import { ComposableMap, ZoomableGroup, Geographies, Geography } from "react-simple-maps"
import {
View
} from 'react-native'
export default class PlotlyGlobal extends React.Component {
render() {
return (
<View>
<ComposableMap>
<ZoomableGroup>
<Geographies geography={"./india.topo.json"}>
{(geographies, projection) =>
geographies.map(geography => (
<Geography key={geography.id} geography={geography} projection={projection} />
))
}
</Geographies>
</ZoomableGroup>
</ComposableMap>
</View>
)
}
}
Невозможно отобразить карту. Пожалуйста, направь меня. Я новичок в React-Native.