设置mapView的边界

时间:2015-06-02 21:21:07

标签: react-native

我有一个调用api的应用程序并返回一个位置列表。

返回数据后,我将JSON转换为地图注释点。

这些都可以毫无问题地添加到ma中。

我遇到的问题是设置地图的边界。我似乎无法弄明白。

我目前的代码是。

_handleResponse(response) {              
     var locations = [];
     // Loop through repsone and add items to an arra for annotations
     for (var i = 0; i < response.length; i++) {
         // Get the location
         var location = response[i];
         // Parse the co ords
         var lat = parseFloat(location.Latitude);
         var lng = parseFloat(location.Longitude);
         // Add the location to array
         locations.push({
            latitude: lat,
            longitude: lng,
            title: location.Name
         });
     }

     // This calls the map set state
     this.setState({
        annotations: locations      
     });
}

这是我的观看代码

<View style={styles.container}>
    <MapView
      style={styles.map}
      onRegionChangeComplete={this._onRegionChangeComplete}
      annotations={this.state.annotations}
    />
  </View>

2 个答案:

答案 0 :(得分:20)

你想要

<MapView
  ...
  region={region}
/>

,其中

var region = {
  latitude,
  longitude,
  latitudeDelta,
  longitudeDelta,
};

latitudelongitude是地图的中心,增量是显示的最小和最大纬度/经度之间的距离(以度为单位)。例如,给定一个点周围的特定半径和地图视图的纵横比,您可以按如下方式计算region

var radiusInRad = radiusInKM / earthRadiusInKM;
var longitudeDelta = rad2deg(radiusInRad / Math.cos(deg2rad(latitude)));
var latitudeDelta = aspectRatio * rad2deg(radiusInRad);

rad2degdeg2radearthRadiusInKM的定义留给读者练习。

答案 1 :(得分:8)

以下是基于@ Philipp的答案的完整代码:

import React, { Component } from 'react';
import { MapView } from 'react-native';

const earthRadiusInKM = 6371;
// you can customize these two values based on your needs
const radiusInKM = 1;
const aspectRatio = 1;

class Map extends Component {
    constructor(props) {
        super(props);

        // this will be the map's initial region
        this.state = {
          region : {
                     latitude: 0,
                     longitude: 0
                   }
        };
    }

    // you need to invoke this method to update your map's region. 
    showRegion(locationCoords) {
        if (locationCoords && locationCoords.latitude && locationCoords.longitude) {
            var radiusInRad = radiusInKM / earthRadiusInKM;
            var longitudeDelta = this.rad2deg(radiusInRad / Math.cos(this.deg2rad(locationCoords.latitude)));
            var latitudeDelta = aspectRatio * this.rad2deg(radiusInRad);

            this.setState({
              region: { latitude: locationCoords.latitude, longitude: locationCoords.longitude, latitudeDelta: latitudeDelta, longitudeDelta: longitudeDelta }
            });
        }
    }

    render () {
        return (
            <MapView
                style={{flex: 1}}
                region={this.state.region}/>
        )
    }

    deg2rad (angle) {
        return angle * 0.017453292519943295 // (angle / 180) * Math.PI;
    }

    rad2deg (angle) {
        return angle * 57.29577951308232 // angle / Math.PI * 180
    }
}