如何在地图上绘制多个圆形和矩形?

时间:2018-11-11 05:47:56

标签: java google-maps jxmaps

对于我大学的一个项目,我需要在地图上显示芝加哥的所有交点和某些车站,我已经有LinkedLists和数据,我需要绘制带有交点位置的Circles和带有位置的矩形的车站。我正在使用jxMaps库,根据示例,我能够根据开发人员提供的示例绘制一个圆和一个矩形来测试方法,但是如果我在打开地图时尝试使用循环绘制多个圆,保持灰色。 这是我的代码:

public class Draw extends MapView
{

    private static final long serialVersionUID = 1L;

    Map map;

    IList <Integer, Intersetion> intersections;

    IList <Integer, Station> stations;

    public Draw(MapViewOptions options, IList <Integer, Intersection> inter, IList <Integer, Station> est)
    {
        super(options);
        // Setting of a ready handler to MapView object. onMapReady will be called when map initialization is done and
        // the map object is ready to use. Current implementation of onMapReady customizes the map object.
        setOnMapReadyHandler(new MapReadyHandler()
        {
            @Override
            public void onMapReady(MapStatus status)
            {
                // Check if the map is loaded correctly
                if (status == MapStatus.MAP_STATUS_OK)
                {
                    map = getMap();
                    intersections = inter; // I Load the list with the intersections data
                    stations = est; // I load the list with the stations data
                    rectangle();
                    circle();
                    // Creating a map options object
                    MapOptions mapOptions = new MapOptions();
                    // Creating a map type control options object
                    MapTypeControlOptions controlOptions = new MapTypeControlOptions();
                    // Changing position of the map type control
                    controlOptions.setPosition(ControlPosition.TOP_RIGHT);
                    // Setting map type control options
                    mapOptions.setMapTypeControlOptions(controlOptions);
                    // Setting map options
                    map.setOptions(mapOptions);
                    // Setting the map center
                    map.setCenter(new LatLng(41.875486, -87.626570));
                    // Setting initial zoom value
                    map.setZoom(9.0);
                }
            }
        });
    }

    public void circle ()
    {
        CircleOptions options = new CircleOptions();
        options.setFillOpacity(0);
        options.setStrokeColor("#CB4335");
        options.setStrokeWeight(5.0);

        for (Intersetion inter: intersections)
        {
            Circle circle = new Circle(map);
            circle.setCenter(new LatLng(inter.darLatitude(), inter.darLongitude()));
            circle.setRadius(50);
            circle.setOptions(options);
        }
    }
    public void rectangle()
    {
        RectangleOptions options = new RectangleOptions();
        options.setFillOpacity(0);
        options.setStrokeColor("#2E86C1");
        int i = 0;
        for (Station rect: stations)
        {
            Rectangle rectangulo = new Rectangle (map);
            LatLngBounds bounds = new LatLngBounds (new LatLng (rect.darLatitude() - 0.0004, rect.darLongitude() - 0.0006), new LatLng (rect.darLatitude() + 0.0004, rect.darLongitude() + 0.0006));
            rectangle.setBounds(bounds);
            rectangle.setOptions(optionts);
        }
    }
}

2 个答案:

答案 0 :(得分:2)

我已经分析了提供的源代码,并且看起来不错,除了设置笔触颜色的地方。您必须使用HTML格式的颜色,因此必须进行以下更改:

options.setStrokeColor(Color.RED.toString()); to options.setStrokeColor("#FF0000");

但是,这不是灰色屏幕的原因。设置地图属性(inside onMapReady() handler)时出错时,通常会出现灰屏。

因此,您必须检查是否发生任何异常,如果是,则请解决该异常的根本原因。

此外,您可以启用日志记录并检查它是否有任何错误。您可以通过在应用程序的VM选项中添加-Djxmaps.logging.level=ALL参数来实现。

EDIT ________________________________________________________________________

这是一个代码示例,可以创建多个圆圈:

map.addEventListener("click", new MapMouseEvent() {
                        @Override
                        public void onEvent(MouseEvent mouseEvent) {
                            final Circle circle = new Circle(map);
                            circle.setRadius(2000);
                            circle.setCenter(mouseEvent.latLng());
                        }
                    });

答案 1 :(得分:1)

实际上,由于某种原因,如果我在设置地图的选项后在末尾调用圆形和矩形方法,则该方法可行,考虑到当我在地图中仅创建一个圆形或一个矩形时它可以正常工作,这有点奇怪出现在问题帖子中的顺序。