jmapviewer

Draw Line between two Geo Points in JMapViewer

隐身守侯 提交于 2019-11-27 02:11:47
I'm working with OpenStreet Maps in Java with JMap Viwer http://wiki.openstreetmap.org/wiki/JMapViewer I can load the maps and everything ok but I don't know how to draw a line between two points from a latitude and longitude. Any body know the function to draw this kind of lines? Thank you. The addMapPolygon() method of JMapViewer works for this, but paintPolygon() silently rejects a polygon having fewer than three vertices. For a line between two points, just repeat the last Coordinate . Coordinate one = new Coordinate(...); Coordinate two = new Coordinate(...); List<Coordinate> route = new

Draw Line between two Geo Points in JMapViewer

倾然丶 夕夏残阳落幕 提交于 2019-11-26 10:00:14
问题 I\'m working with OpenStreet Maps in Java with JMap Viwer http://wiki.openstreetmap.org/wiki/JMapViewer I can load the maps and everything ok but I don\'t know how to draw a line between two points from a latitude and longitude. Any body know the function to draw this kind of lines? Thank you. 回答1: The addMapPolygon() method of JMapViewer works for this, but paintPolygon() silently rejects a polygon having fewer than three vertices. For a line between two points, just repeat the last