場所の緯度と経度を計算するバックグラウンド プロセスがあります。次に、タイマー タスクを使用して数秒ごとに実行し、この計算された緯度と経度を取得して RichMapField に表示します。この緯度と経度を地図に表示する必要がありますが、タイマーが原因で表示されません。誰かがこの状況に対処する方法を教えてください。
編集:理解を深めてください:以下は私のコードです:
5 秒ごとにスケジュールされたタイマー:
timer.scheduleAtFixedRate(new TimerTask() {
public void run()
{
currentLocation.run();
}}, 0, 5000);
public Runnable currentLocation = new Runnable()
{
public void run() {
double[] coordinates = new double[3];
coordinates[0]= 47.674131297119935;
coordinates[1]= 9.384496898485185;
coordinates[2]= 475.678;
addToMap(coordinates);
}
};
public void addToMap(double[] coordinates)
{
MapLocation location1 = new MapLocation(coordinates[0],coordinates[1],"My Location2",null);
int location1ID = data.add((Mappable)location1,"My");
data.tag(location1ID, "Location1");
MapLocation location2 = new MapLocation(coordinates[0],coordinates[1],"My Location2",null);
int location2ID = data.add((Mappable)location2,"My");
data.tag(location2ID, "Location2");
}