How to create local language support on Google Maps using react-native-maps

混江龙づ霸主 提交于 2020-04-15 01:29:33

问题


I wanna to show English and local language support on my React-native-maps like this image,But default it's showing only English,How to make support of bilingual map using react-native-maps

<MapView ref={map => {this.map = map}}
      provider={this.props.provider}
      style={styles.map}
      showsUserLocation={true}
      maxZoomLevel={50}
      initialRegion={this.state.region}
      showsBuildings={true}
      onRegionChangeComplete={region => this.onRegion(region)}
    />

来源:https://stackoverflow.com/questions/53995302/how-to-create-local-language-support-on-google-maps-using-react-native-maps

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!