Adds paths to the map and adds given type to all nodes' type. @param file The file where the WKT data is read from @param type The type to use (integer value, see class MapNode)) @throws IOException If something went wrong while reading the file
(File file, int type)
| 78 | * @throws IOException If something went wrong while reading the file |
| 79 | */ |
| 80 | public void addPaths(File file, int type) throws IOException { |
| 81 | addPaths(new FileReader(file), type); |
| 82 | } |
| 83 | |
| 84 | |
| 85 | /** |