将 GeoPoint 转换为位置

Convert GeoPoint to Location(将 GeoPoint 转换为位置)

本文介绍了将 GeoPoint 转换为位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道这是一个非常愚蠢的问题 - 但是转换 GeoPointLocation 在 Android 平台上.

I know this is a very noobish question -- but what is the best way to convert a GeoPoint to a Location on the Android platform.

推荐答案

double latitude = geoPoint.getLatitudeE6() / 1E6;
double longitude = geoPoint.getLongitudeE6() / 1E6;

location.setLatitude(latitude);
location.setLongitude(longitude);

这篇关于将 GeoPoint 转换为位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:将 GeoPoint 转换为位置

基础教程推荐