任何人都可以建议我如何在Android应用程序中计算高度。
我正在使用" GoogleApiClient"并在onLocationChanged(位置位置)中调用方法location.getAltitude(),但总是得到0.0,
任何人都可以建议,如果api正在返回正确的值,或者还有其他方法来计算海拔高度?
答案 0 :(得分:1)
首先检查import { withRouter } from 'react-router'
class Example extends React.Component {
// use `this.props.router.push('/some/path')` here
};
// Export the decorated class
var DecoratedExample = withRouter(Example);
// PropTypes
Example.propTypes = {
router: React.PropTypes.shape({
push: React.PropTypes.func.isRequired
}).isRequired
};
然后检查后LocationProvider.supportsAltitude()
如果它返回true,则会得到一些高度而不是0.0。