gmaps - 查找可见区域内的位置
我正在尝试开发一个函数来获取当前可见区域内的所有相关记录。
http://code.google.com/apis/maps/articles/phpsqlsearch.html
我发现这个教程(并让它工作)来获取半径内的位置,这很有帮助,但我需要它恰好在可见部分(矩形)内。
知道这是如何运作的吗?
提前致谢!
I'm trying to develop a function that gets all relevant records within the currently visible area.
http://code.google.com/apis/maps/articles/phpsqlsearch.html
I found this tutorial (and got it to work) to get locations within a radius which helped a lot but i would need it to be exactly within the visible part (rectangle).
Any idea how that works?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当前可见区域可以通过地图对象 getBounds() 方法确定。如果您有点或纬度/经度列表,您可以使用 MySQL 进行查询,并提供从地图返回的边界。您还可以使用Fusion 表来存储数据而不是 MySQL 和 使用相对较新的 Geo 方法。
The current visible area can be determined by the Map objects getBounds() method. If you have a list of points or lat/longs, you can use MySQL to query this, providing the bounds returned from the map. You can also use Fusion Tables to store your data instead of MySQL and use its relatively new Geo methods.