如何在数据库中插入地理点值?

发布于 2024-10-31 06:55:42 字数 57 浏览 1 评论 0原文

我有 2 个地理点值,我想保存在本地数据库中,但我不知道应该使用哪种数据类型将该值插入本地数据库中。

I have 2 Geopoint values and I want to save in local database but I dont know which datatype should I use to insert that values in local database.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

極樂鬼 2024-11-07 06:55:42

使用 long 作为数据类型并将其存储在 SQLite 数据库中:

http://p-xr.com/android-tutorial-simple-but-persistent-data-storage/

该链接包含有关创建/寻址 SQLite 数据库的信息

Use long as your datatype and store it in a SQLite database:

http://p-xr.com/android-tutorial-simple-but-persistent-data-storage/

The link contains info on making / adressing the SQLite db

陌若浮生 2024-11-07 06:55:42

最好的方法是,您必须从 GeoPoint 获取经度和纬度值作为长值。然后您可以将其存储在数据库中。

long longitude=geopoint.getLongitudeE6();
long latitude=geopoint.getLatitudeE6();

Best way, you have to get the longitude and latitude value from the GeoPoint as Long Value. Then you can store it in the Database.

long longitude=geopoint.getLongitudeE6();
long latitude=geopoint.getLatitudeE6();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文