This commit is contained in:
wangcongtao
2020-06-04 17:35:42 +08:00
parent 82e0a15f2e
commit 0298578b55
20 changed files with 317 additions and 98 deletions

View File

@@ -143,6 +143,12 @@ public class MockIntentHandler implements IntentHandler {
}
}
break;
case 13: {
double lat = intent.getFloatExtra( "lat", 0.0f );
double lon = intent.getFloatExtra( "lon", 0.0f );
MarkerServiceHandler.getNavi().naviTo( new MogoLatLng( lat, lon ) );
}
break;
}
}
}