本文介绍了安卓的GeoPoint与纬度/长值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想通过45.44334获得的GeoPoint为-23.4456

I am trying to get a GeoPoint for -23.4456 by 45.44334

我要传递到的GeoPoint的构造什么样的价值观,因为只需要整型。

What values do I pass into the constructor of the GeoPoint as it take Ints only.

推荐答案

的GeoPoint坐标为基础,在microdegrees(度* 1e6个) - 写的

GeoPoint coordinates are based in microdegrees (degrees * 1e6) -- written here

float lat = -23.4456f;
float lng = 45.44334f;
GeoPoint gp = new GeoPoint((int)(lat * 1E6), (int)(lng * 1E6));

这篇关于安卓的GeoPoint与纬度/长值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-18 15:37