如何更改android地图中的圆圈颜色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何更改android地图中的圆圈颜色相关的知识,希望对你有一定的参考价值。
我已经开发了一个基于谷歌的android地图应用程序,它指出了我当前的位置,我成功了。但是,我使用的标记有一个圆圈,当它放大时它是深蓝色,这有点奇怪。我们无法追踪附近的地方给我们。我使用了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);
}
任何人都可以建议改变圆圈的颜色/使其透明,这样mapview会更好一些。提前致谢!!! This is the view that I am getting
答案
在Google Maps API v2中,我认为不需要叠加层。现在您可以按如下方式更改圆圈颜色;
// Create an ellipse centered at Sydney.
PolygonOptions options = new PolygonOptions();
int numPoints = 400;
float semiHorizontalAxis = 10f;
float semiVerticalAxis = 5f;
double phase = 2 * Math.PI / numPoints;
for (int i = 0; i <= numPoints; i++) {
options.add(new LatLng(SYDNEY.latitude + semiVerticalAxis * Math.sin(i * phase),
SYDNEY.longitude + semiHorizontalAxis * Math.cos(i * phase)));
}
//Here you can change the color of the circle market called as "plygon" on Google Maps API v
mSYDNEYcircle = mMap.addPolygon(new options
.strokeWidth(float width)
.strokeColor(Color.BLACK)
.fillColor(Color.YELLOW));
有关更多信息,请参阅the Google API v2 Guide。
另一答案
您可以使用以下CircleOption函数将Circle添加到地图中,其默认填充颜色是透明的。此功能将围绕您的位置绘制圆圈:
map.addCircle(new CircleOptions()
.center(new LatLng(Your_Location))
.radius(10000) //radius in meters
.strokeColor(Color.BLUE); //border color default is black
上面的代码使您的圆圈透明。您还可以使用CircleOptions中的.fillColor(Color.argb())
属性填充圆形颜色,
以上是关于如何更改android地图中的圆圈颜色的主要内容,如果未能解决你的问题,请参考以下文章
如何在Android上更改默认的ProgressBar圆圈颜色
如何在Android的谷歌地图片段中更改默认的蓝色圆形位置图标?
如何更改 Android 中各个片段的 ActionBar 颜色?