开发服务器返回响应错误代码500

时间:2017-05-03 06:53:17

标签: android google-maps react-native

我在将本地视图中的mapview添加到android中时运行了以下代码。

import React, { Component } from 'react'
import { MapView } from 'react-native-maps'
import {
  AppRegistry,
  StyleSheet
} from 'react-native'

export default class MapTest extends Component {

   constructor() {
      super();
   }
   render() {
      return (
        <MapView
           style = {styles.map}
           showsUserLocation = {false}
           followUserLocation = {false}
           zoomEnabled = {true}
        />
      );
   }
}
const styles = StyleSheet.create ({
   map: {
      height: 400,
      marginTop: 80
   }
})
AppRegistry.registerComponent('MapTest', () => MapTest);

但是我明白了 this错误。  我不知道如何解决。请帮忙。

0 个答案:

没有答案