не могу подключить яндекс карты в приложение на react-native.
Делаю вот так
import React from 'react';
import { Text, View, TouchableOpacity } from 'react-native';
import styles from '../styles';
import { YandexMapView, YandexMapKit } from 'react-native-yandexmapkit';
YandexMapKit.setApiKey('АПИ КЛЮЧ');
class MapScreen extends React.Component {
constructor(props) {
super(props);
this.state = {
region: { lat: 55.834464, lng: 97.584574 }
}
}
render() {
return (
<YandexMapView
ref="yandexMap"
onInteraction={this.onInteraction}
region={this.state.region}
showMyLocation={true}
geocodingEnabled={true}
onGeocoding={this.onGeocoding}
showMyLocationButton={true}
/>
);
}
}
export default MapScreen;