我能够把我当前的位置弄好。我创建了一个带行车路线的地图,然后我想让我的用户导航到目的地。
如何设置用户导航的位置?我没有看到设置位置的方法,只有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()
答案 0 :(得分:3)
NAVIGATE菜单命令将使用的目标位置在location
字段中设置。玻璃可以自己找出当前的位置。
有关详细信息,请参阅https://developers.google.com/glass/v1/reference/timeline。