0
我想要谷歌地圖縮放到正在使用的設備的位置。谷歌地圖意圖放大到設備的位置
谷歌地圖是從我的應用程序通過意圖代碼下面啓動。
button_bakery = (Button) findViewById(R.id.Breakfast_bakery);
button_bakery.setOnClickListener(
new View.OnClickListener() {
@Override
public void onClick(View views) {
Button b = button_bakery;
String buttonText = b.getText().toString();
// Search for restaurants nearby
Uri gmmIntentUri = Uri.parse("geo:0,0?q=" + buttonText);
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);
}
}
);
但是,當使用此應用程序時,會將該位置加載爲設備設置的最後一個位置。有沒有辦法將它設置爲在搜索完成之前縮放到設備的當前位置?
在此先感謝!