I am trying to integrate a package known as react-native-simple-maps. I have attached the code below.
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> ) }}
Not able to display the map. Please do guide me. I am new to React-Native.