作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想做的是在 google mapView 上添加 GeoPoints。这就是我的代码现在的样子:
public ArrayList getLocations() {
ArrayList<OverlayItem> locations = new ArrayList<OverlayItem>();
/* open SQLite database aanmaken als deze al dan niet bestaat */
SQLiteDatabase myDB = openOrCreateDatabase(DATABASE_NAME, Context.MODE_PRIVATE, null);
SharedPreferences preferences = getSharedPreferences("data", 0);
String route_id = String.valueOf( preferences.getInt("route_id", 0));
String[] resultColumns = new String[] { "_id", "route_id","naam", "lng", "lat" };
String whereClause = "route_id=?";
String[] whereArgs = new String[] {route_id};
Cursor cursor = myDB.query(DATABASE_TABLE_LOCATIES, resultColumns, whereClause,
whereArgs, null, null, null, null);
cursor.moveToFirst();
do {
String naam = cursor.getString(2);
Double lat = cursor.getDouble(4);
Double lon = cursor.getDouble(3);
GeoPoint point = new GeoPoint((int) (lat * 1E6),(int) (lon * 1E6));
locations.add(new OverlayItem(point, naam,naam));
} while (cursor.moveToNext());
return locations;
}
public void onCreate(Bundle savedInstanceState) {
InterestingLocations funPlaces = new InterestingLocations(marker);
mapView.getOverlays().add(getLocations);
}
此代码将我所有的指针同时放在 mapView 上。将每个指针放在 map 上时,我希望有一点延迟。我怎么能这样做?
提前致谢
最佳答案
首先定义全局变量,
private Timer myTimer;
在 onCreate()
方法中添加:
myTimer = new Timer();
myTimer.schedule(new TimerTask() {
@Override
public void run() {
TimerMethod();
}
}, 0, 1000);
}
并在类中添加这个函数:
private void TimerMethod()
{
this.runOnUiThread(Timer_Tick);
}
并将其定义为全局变量:
private Runnable Timer_Tick = new Runnable() {
public void run() {
//here is your job, instead of writing this [mapView.getOverlays().add(getLocations);]
//you have to create a loop for the list returned by getLocations() to add them in the timer one by one
}
};
关于Android在谷歌地图上延迟添加地理点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10164936/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!