Skip to content
Snippets Groups Projects
Select Git revision
  • master default
  • issue-13-gpx
  • issue-10-fxmapcontrol
  • issue-9-file-menu
4 results

IMapNode.java

Blame
  • Forked from tdt4140-staff / examples
    Up to date with the upstream repository.
    IMapNode.java 281 B
    /*
     * FX Map Control - https://github.com/ClemensFischer/FX-Map-Control
     * © 2016 Clemens Fischer
     */
    package fxmapcontrol;
    
    /**
     * Represents a Node in the visual tree of a MapBase instance.
     */
    public interface IMapNode {
    
        MapBase getMap();
    
        void setMap(MapBase map);
    }