0

我想向我的 OpenGraphObject 添加一个位置(它从位置继承)。目前我有这个:

OpenGraphObject store = OpenGraphObject.Factory.createForPost("testshoppingguide:store");
store.setTitle(this.store.getName());
store.setDescription(this.store.getName());
store.setProperty("location", )

但是我应该在位置之后添加什么?我只找到了 GraphLocation,但我不确定如何使用它。

4

1 回答 1

1

您想传入一个“id”属性为位置 id 的 GraphObject。

尝试这样的事情:

GraphLocation location = GraphObject.Factory.create(GraphLocation.class);
location.setLatitude(...);
location.setLongitude(...);
store.setProperty("location", location);
于 2013-08-26T21:42:02.397 回答