2

我能够很好地获得我当前的位置。我创建了一张带有行车路线的地图,然后我想让我的用户导航到他们的目的地。

如何设置用户导航的位置?我看不到设置位置的方法,只有 location.list() 和 location.get() 方法。我正在使用 Python,下面是我尝试的代码:

work = [lat1, lng1]
#home_location = self.mirror_service.locations().set(home)
body = {
    'location': location,
    'html': PAGINATED_HTML % 
    (lat1, lng1, route(home,work), lat1, lng1, distance(home, work)),
    'notification': {'level': 'DEFAULT'},
    'menuItems': [{'action': 'NAVIGATE'},
        {'action': 'READ_ALOUD'},
        {'action': 'DELETE'}],
    'notification': {'level': 'DEFAULT'}

}
# self.mirror_service is initialized in util.auth_required.
self.mirror_service.timeline().insert(body=body).execute()
4

1 回答 1

3

NAVIGATE 菜单命令将使用的目标位置在该location字段中设置。Glass 可以自行判断当前位置。

有关详细信息,请参阅https://developers.google.com/glass/v1/reference/timeline

于 2013-11-06T02:14:48.633 回答