Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在这里,我开发了一个在应用程序中显示地图的应用程序。我在我的应用程序中显示地图并且它工作正常,但我显示了我想从应用程序在地图中显示的那个国家。那么该怎么做呢?在安卓中可以吗?
请帮我。
提前致谢。
首先通过 LocationListener/LocationManager 跟踪你当前的位置:
MyLocation myLocation = new MyLocation(); private void locationClick() { myLocation.getLocation(this, locationResult); }
并且,通过代码缩小您的位置:
mapView.getController().setZoom(17);
然后你可以看到提到的国家。