Package com.bbn.openmap.layer.location

Examples of com.bbn.openmap.layer.location.Link


        }

        public void createAndAddObjectFromTokens(DataOrganizer organizer) {
            // Original Lines added to this else block to fix
            // reading a data file with a header in it.
            Link link = new Link(lat1, lon1, lat2, lon2, "No details", color, dashed, thickness, linetype);
            link.setLocationHandler(CSVLinkHandler.this);

            // What we really want to do is get the
            // locationDrawingAttributes and set them on the link.

            Debug.message("csvlocation", "CSVLinkHandler: " + link.getDetails());

            organizer.put(lat1, lon1, link);
            organizer.put(lat2, lon2, link);
            reset();
        }
View Full Code Here

TOP

Related Classes of com.bbn.openmap.layer.location.Link

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.