1

我开发了一个基于谷歌的安卓地图应用程序,它指向我当前的位置,我成功了。但是,我使用的标记中有一个圆圈,放大时它是深蓝色的,这有点奇怪。我们无法追踪到我们附近的地方。我为此使用了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);
}

任何人都可以建议更改圆圈的颜色/使其透明,以便地图视图会更好一点。提前致谢!!!
这是我得到的观点

4

2 回答 2

0

在 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));

有关详细信息,请参阅Google API v2 指南

在此处输入图像描述

于 2013-01-23T14:18:32.857 回答
0

您可以使用以下 CircleOption 函数将 Circle 添加到地图中,其默认填充颜色是透明的。此功能将围绕您的位置绘制圆圈:

 map.addCircle(new CircleOptions()
     .center(new LatLng(Your_Location))
     .radius(10000) //radius in meters
     .strokeColor(Color.BLUE); //border color default is black

上面的代码使您的圈子透明。您还可以使用.fillColor(Color.argb())CircleOptions 中的属性填充圆圈颜色,

于 2018-01-04T09:47:01.963 回答