我开发了一个基于谷歌的安卓地图应用程序,它指向我当前的位置,我成功了。但是,我使用的标记中有一个圆圈,放大时它是深蓝色的,这有点奇怪。我们无法追踪到我们附近的地方。我为此使用了locationoverlay。这是我的代码:
private void setMaptoLocation(Location location) {
mapView.setBuiltInZoomControls(true);
mapView.setTraffic(true);
int LAT = (int) (location.getLatitude() * 1E6);
int LNG = (int) (location.getLongitude() * 1E6);
GeoPoint point = new GeoPoint(LAT, LNG);
MapController mapController = mapView.getController();
mapController.setCenter(point);
MyLocationOverlay myLocationOverlay = new MyLocationOverlay(this,mapView);
myLocationOverlay.enableMyLocation();
mapView.getOverlays().add(myLocationOverlay);
mapController.animateTo(point);
}
任何人都可以建议更改圆圈的颜色/使其透明,以便地图视图会更好一点。提前致谢!!!
这是我得到的观点