镜像API和导航

时间:2014-06-19 00:26:48

标签: google-mirror-api

我想创建一个Menuitem,它可以打开导航地图或可用于导航的东西。 Google Glass Mirror API是否支持此功能?

如果是,那么正确的方法是什么?

从我在文档中看到的内容来看,它只能创建地图。但没有说出触发导航的事情。

提前致谢

1 个答案:

答案 0 :(得分:0)

为此,您需要插入一个时间轴项目,其中包含两条通常不包含的信息:

  1. 您需要创建一个动作为“NAVIGATE”
  2. 的MenuItem
  3. 您的TimelineItem需要设置一个位置(它将导航到的位置)
  4. 有关创建TimelineItem的更多信息,请参阅https://developers.google.com/glass/v1/reference/timeline/insert,有关位置对象的更多信息,请参阅https://developers.google.com/glass/v1/reference/locations。但是如果您要插入一张卡片让人们导航到Google HQ,那么JSON表示可能是这样的:

    {
      "text": "Go to Google HQ",
      "location": {
        "latitude": 37.422,
        "longitude": -122.084058,
        "displayName": "Googleplex",
        "address": "1600 Amphitheatre Pkwy, Mountain View, CA 94043"
      },
      "menuItems": [
        "action": "NAVIGATE"
      ]
    }