GmapsFX。从地图中删除调试面板

时间:2015-02-07 10:56:57

标签: java google-maps javafx

我使用GmapsFX 1.1.0使用Google地图创建了一个简单的JavaFX项目



public class CorrectorClientMain extends Application implements MapComponentInitializedListener {
	protected GoogleMapView mapComponent;
    protected GoogleMap map;

    private Button btnZoomIn;
    private Button btnZoomOut;
    private Label lblZoom;
    private Label lblCenter;
    private Label lblClick;
    private ComboBox<MapTypeIdEnum> mapTypeCombo;

    @Override
    public void start(final Stage stage) throws Exception {
        mapComponent = new GoogleMapView();
        mapComponent.addMapInializedListener(this);
        BorderPane bp = new BorderPane();
        ToolBar tb = new ToolBar();

        btnZoomIn = new Button("Zoom In");
        btnZoomIn.setOnAction(e -> {
            map.zoomProperty().set(map.getZoom() + 1);
        });
        btnZoomIn.setDisable(true);

        btnZoomOut = new Button("Zoom Out");
        btnZoomOut.setOnAction(e -> {
            map.zoomProperty().set(map.getZoom() - 1);
        });
        btnZoomOut.setDisable(true);

        lblZoom = new Label();
        lblCenter = new Label();
        lblClick = new Label();
        
        mapTypeCombo = new ComboBox<>();
        mapTypeCombo.setOnAction( e -> {
           map.setMapType(mapTypeCombo.getSelectionModel().getSelectedItem() );
        });
        mapTypeCombo.setDisable(true);
        
        Button btnType = new Button("Map type");
        btnType.setOnAction(e -> {
            map.setMapType(MapTypeIdEnum.HYBRID);
        });
        tb.getItems().addAll(btnZoomIn, btnZoomOut, mapTypeCombo,
                new Label("Zoom: "), lblZoom,
                new Label("Center: "), lblCenter,
                new Label("Click: "), lblClick);

        bp.setTop(tb);
        bp.setCenter(mapComponent);
        bp.setLeft(btnType);
        Scene scene = new Scene(bp);
        
        stage.setScene(scene);
        stage.show();
    }

    public void mapInitialized() {
        //Once the map has been loaded by the Webview, initialize the map details.
        LatLong center = new LatLong(48.8539819,37.6144408);
        mapComponent.addMapInializedListener(() -> {
            // This call will fail unless the map is completely ready.
            //checkCenter(center);
        });
        
        MapOptions options = new MapOptions();
        options.center(center)
                .mapMarker(true)
                .zoom(12)
                .overviewMapControl(false)
                .panControl(false)
                .rotateControl(false)
                .scaleControl(true)
                .streetViewControl(false)
                .zoomControl(true)
                .mapType(MapTypeIdEnum.HYBRID);

        map = mapComponent.createMap(options);
                
    }

    private void checkCenter(LatLong center) {
         //
    }
    

	public static void main(String[] args) {
		launch(args);
	}
}
&#13;
&#13;
&#13;

当我运行应用程序时,我在窗口中看到了调试面板:

Firebug

我可以删除此调试面板吗?我忘了设置任何参数吗?

1 个答案:

答案 0 :(得分:0)

如果您查看项目站点,在版本link中,有两个较新的版本。

事实上,版本1.1.1更改列表已经解决了您的问题:

  

修复了FireBug插件默认使用Map显示的问题。

因此,我建议您将版本更新为最后一个版本1.1.2