本文整理汇总了Python中s2sphere.LatLng.latitude方法的典型用法代码示例。如果您正苦于以下问题:Python LatLng.latitude方法的具体用法?Python LatLng.latitude怎么用?Python LatLng.latitude使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类s2sphere.LatLng
的用法示例。
在下文中一共展示了LatLng.latitude方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: bounds
# 需要导入模块: from s2sphere import LatLng [as 别名]
# 或者: from s2sphere.LatLng import latitude [as 别名]
def bounds(cell_id):
cell = Cell(cell_id)
url_string = 'http://maps.googleapis.com/maps/api/staticmap?size=400x400&path='
coords = []
for i in range(4) + [0]:
point = cell.get_vertex(i)
coords.append("{},{}".format(LatLng.latitude(point).degrees, LatLng.longitude(point).degrees))
url_string += "|".join(coords)
print url_string