在android上没有使用地图对象的关闭位置列表

我正在制作一个 Android应用程序,需要检查用户是否接近感兴趣的地方,例如电影院. (1公里范围内)

但是我不需要用户看到我认为需要使用google places api的地图.我做了一些研究,但不知道如何在Android上实现这一点.任何提示(包括评论或相关链接将不胜感激)

解决方法

看到附近的景点,

1.-使用谷歌地图的附近搜索请求,link here

2.-使用电话坐标,获取附近的电影院列表……

https://maps.googleapis.com/maps/api/place/radarsearch/json?location=51.503186,-0.126446\u0026amp;radius=5000\u0026amp;types=movie theater& key = YOUR_API_KEY

3.-比较两个坐标,并做你的魔法,也许得到两点的距离,并向用户显示距离..

Note: if you want a lot of special places,you will need to see
another way to do it. That’s what I thought… is,in your server
need to do a request by coords with a lot of nearest places,
(museum,movie theater,etc.),and save that because google charges you
when the server check in many times,when the user send the
coordenates you will have a list of nearest places,if not,consult a
list of best pleaces and save in your server and send to user,

you will need to use a some calculate coordenates,like range,if user
is near of this coordenates that i have in database send that
information if not,do request to server to consult nearest places
(with your predefinite list)

对不起我的英语不好.

链接了解更多信息
Find Places Nearby in Google Maps using Google Places API–Android App
Places APIs and Related Products
how to display nearby places like atm,hospitals in android google map?

相关文章

以下为个人理解,如错请评 CE: 凭据加密 (CE) 存储空间, 实际路径/data/user_ce/ DE: 设备加密 (DE) 存...
转载来源:https://blog.csdn.net/yfbdxz/article/details/114702144 用EventLog.writeEvent打的日志(或...
事件分发机制详解 一、基础知识介绍 1、经常用的事件有:MotionEvent.ACTION_DOWN,MotionEvent.ACTION...
又是好久没有写博客了,一直都比较忙,最近终于有时间沉淀和整理一下最近学到和解决的一些问题。 最近进...
Android性能优化——之控件的优化 前面讲了图像的优化,接下来分享一下控件的性能优化,这里主要是面向...
android的开源库是用来在android上显示gif图片的。我在网上查了一下,大家说这个框架写的不错,加载大的...