Render a Map to an SVG Document.
import geoscript.render.* import geoscript.layer.* import geoscript.style.* Map map = new Map(layers:[new Shapefile("states.shp")]) Svg svg = new Svg() svg.render(map, new FileOutputStream(new File("states.svg")))
Document
render(Map map)
void
render(Map map, java.io.OutputStream out)
class Renderer
render, render
Render the Map to a SVG Document
map
Render the Map to the OutputStream
out
Groovy Documentation