Geo トリガーが 1 つあり、そのトリガーのイベント プロパティに配置されたデータを読み取りたいと考えています。
アプリケーションがイベント データとデバイス コンテキストをサーバーに送信する前に、このデータを読み取るにはどうすればよいですか? コールバック関数にいくつかのパラメーターを送信する方法はありますか?
var trigger1 = {
type: "DwellInside",
circle: {
longitude: 88.41,
latitude: 22.58,
radius: 100000 // 100km
},
dwellingTime: 100,
confidenceLevel: "high", // high confidence that we are in the circle
callback: this.myFunction,
eventToTransmit: {
event: {
city: "data.city" // dynamically added using JSON data.
},
transmitImmediately: true
}
};