// Resize changes the map size in pixel. func (m *Map) Resize(width, height int) { C.mapnik_map_resize(m.m, C.uint(width), C.uint(height)) m.width = width m.height = height }
func (m *Map) Resize(width, height uint32) { C.mapnik_map_resize(m.m, C.uint(width), C.uint(height)) }