关于经度纬度获取城市的问题
我现在的需求是酱紫的:
我们的应用客户端现在有20几万的用户量,当应用每次启动时,都会上传该客户端的相关信息,其中包括这个客户端当前所在的位置,即经度和纬度信息,那么这些数据我们都存在数据库中,现在我们有个需求,就是调用了百度的云推送服务给客户端发送消息,现在的问题是:我想实现给某个城市(比如杭州)的所有用户发送消息,这个该怎么做啊?通过什么样的条件才能把这些用户筛选出来啊?求指教。。。
回复内容:
我现在的需求是酱紫的:
我们的应用客户端现在有20几万的用户量,当应用每次启动时,都会上传该客户端的相关信息,其中包括这个客户端当前所在的位置,即经度和纬度信息,那么这些数据我们都存在数据库中,现在我们有个需求,就是调用了百度的云推送服务给客户端发送消息,现在的问题是:我想实现给某个城市(比如杭州)的所有用户发送消息,这个该怎么做啊?通过什么样的条件才能把这些用户筛选出来啊?求指教。。。
百度和google地图的api都是可以通过反查查到gps的城市的。
百度的api:http://developer.baidu.com/map/webservice-geocoding.htm
google的api:https://developers.google.com/maps/documentation/geocoding/?hl=zh-cn
每次上传都去反查api,得出城市信息打上tag,把数据存入mongo。
百度云推送分组推送说明:http://developer.baidu.com/wiki/index.php?title=docs/cplat/push/scene
简单的方法就是新建个城市字段,然后所有的坐标都通过地图API获取地理位置存储。直接通过城市字段选取的话就非常简单了。虽然工作量很大,但是方便你以后筛选其它城市的用户。
其它的方法就是,由于无法获取城市的坐标范围,所以只能根据杭州的坐标“30°16′00″N 120°12′00″E” (via WikiPedia),杭州上下左城市的坐标(分别应该是嘉兴,临安,绍兴)获取到杭州的大概的坐标范围根据这个筛选一次数据库。给这些人发消息就稍微靠谱一点了。如果还要更加靠谱的话,可以对这些坐标进行一次具体城市的读取,然后排出掉。为了减少工作量,可以根据杭州的坐标中心和面积画一个大概的圆排掉一些肯定是杭州的坐标然后对剩下的进行具体城市读取。
其实吧。我觉得你该这样。
应用启动后,注册推送客户端tags添加城市拼音。比如注册tags[hangzhou,other_tag]。然后发送推送时,直接发送给所有包含hangzhou tag的client即可。
至于如何获取hangzhou这个东西。可以在上传记录的时候,服务器直接返回对应记录。
客户端启动时将坐标传到了服务器,服务器再处理一下,添加一个城市字段,百度Google都能轻松获得。不过百度不支持国外坐标。
这样就很方便处理了。
在客户端的下一个版本里,应该可以很轻松拿到城市坐标等各种地理信息,把城市也传过来,这样服务端就不必再用坐标去查询,直接入库。
必须用经纬度信息吗?那么可以用百度地图api获取经纬度所对应的的城市。
抑或更简单的通过当前ip地址判断用户所在地?百度地图亦有开放api。
http://developer.baidu.com/map/ip-location-api.htm

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
