如何在react-native映射上获取中心坐标?

时间:2015-08-31 16:05:38

标签: ios dictionary react-native

我正在使用react-native。如何在iOS地图上获取中心坐标?

1 个答案:

答案 0 :(得分:8)

来自:https://facebook.github.io/react-native/docs/mapview.html#content

  

region {纬度:数字,经度:数字,纬度地理位置:数字,   longitudeDelta:number}

     

地图显示的区域。

     

该区域由中心坐标和跨度定义   要显示的坐标。

您可以使用地图的region属性获取中心坐标,使用类似

的内容
getCoordinates(region) {
    return [{
      longitude: region.longitude,
      latitude: region.latitude,
    }];
},

如果您需要将全局变量传递给getCoordinates,则可以使用全局变量,该变量会根据onRegionChange等各种状态更改设置新值。