Package not found. Please check the package name and try again.
mapnik 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.autotest +35 -0
- data/.yardopts +1 -0
- data/Gemfile +14 -0
- data/LICENSE +19 -0
- data/Manifest.txt +172 -0
- data/README.rdoc +107 -0
- data/Rakefile +43 -0
- data/demo/data/COPYRIGHT.txt +3 -0
- data/demo/data/TM_WORLD_BORDERS_SIMPL_0.3_MOD.dbf +0 -0
- data/demo/data/TM_WORLD_BORDERS_SIMPL_0.3_MOD.prj +1 -0
- data/demo/data/TM_WORLD_BORDERS_SIMPL_0.3_MOD.shp +0 -0
- data/demo/data/TM_WORLD_BORDERS_SIMPL_0.3_MOD.shx +0 -0
- data/demo/data/boundaries.dbf +0 -0
- data/demo/data/boundaries.prj +1 -0
- data/demo/data/boundaries.sbx +0 -0
- data/demo/data/boundaries.shp +0 -0
- data/demo/data/boundaries.shx +0 -0
- data/demo/data/boundaries_l.dbf +0 -0
- data/demo/data/boundaries_l.prj +1 -0
- data/demo/data/boundaries_l.sbx +0 -0
- data/demo/data/boundaries_l.shp +0 -0
- data/demo/data/boundaries_l.shx +0 -0
- data/demo/data/ontdrainage.dbf +0 -0
- data/demo/data/ontdrainage.prj +1 -0
- data/demo/data/ontdrainage.sbx +0 -0
- data/demo/data/ontdrainage.shp +0 -0
- data/demo/data/ontdrainage.shx +0 -0
- data/demo/data/popplaces.dbf +0 -0
- data/demo/data/popplaces.prj +1 -0
- data/demo/data/popplaces.sbx +0 -0
- data/demo/data/popplaces.shp +0 -0
- data/demo/data/popplaces.shx +0 -0
- data/demo/data/qcdrainage.dbf +0 -0
- data/demo/data/qcdrainage.prj +1 -0
- data/demo/data/qcdrainage.sbx +0 -0
- data/demo/data/qcdrainage.shp +0 -0
- data/demo/data/qcdrainage.shx +0 -0
- data/demo/data/roads.dbf +0 -0
- data/demo/data/roads.prj +1 -0
- data/demo/data/roads.sbx +0 -0
- data/demo/data/roads.shp +0 -0
- data/demo/data/roads.shx +0 -0
- data/demo/data/test/charplacement.dbf +0 -0
- data/demo/data/test/charplacement.shp +0 -0
- data/demo/data/test/charplacement.shx +0 -0
- data/demo/data/test/displacement.dbf +0 -0
- data/demo/data/test/displacement.shp +0 -0
- data/demo/data/test/displacement.shx +0 -0
- data/demo/data/test/overlap.dbf +0 -0
- data/demo/data/test/overlap.shp +0 -0
- data/demo/data/test/overlap.shx +0 -0
- data/demo/data/test/raw/charplacement.gfs +25 -0
- data/demo/data/test/raw/charplacement.gml +99 -0
- data/demo/data/test/raw/charplacement.xsd +36 -0
- data/demo/data/test/raw/displacement.gfs +25 -0
- data/demo/data/test/raw/displacement.gml +173 -0
- data/demo/data/test/raw/displacement.xsd +36 -0
- data/demo/data/test/raw/overlap.gfs +25 -0
- data/demo/data/test/raw/overlap.gml +127 -0
- data/demo/data/test/raw/overlap.xsd +36 -0
- data/demo/data/test/raw/textspacing.gfs +25 -0
- data/demo/data/test/raw/textspacing.gml +117 -0
- data/demo/data/test/raw/textspacing.xsd +36 -0
- data/demo/data/test/readme.txt +3 -0
- data/demo/data/test/regenerate.sh +20 -0
- data/demo/data/test/textspacing.dbf +0 -0
- data/demo/data/test/textspacing.shp +0 -0
- data/demo/data/test/textspacing.shx +0 -0
- data/demo/rundemo.rb +145 -0
- data/demo/sinatra/demo.rb +31 -0
- data/demo/sinatra/public/css/demo_map.css +7 -0
- data/demo/sinatra/public/index.html +13 -0
- data/demo/sinatra/public/javascripts/demo_map.js +42 -0
- data/ext/ruby_mapnik/_mapnik.cpp +52 -0
- data/ext/ruby_mapnik/_mapnik.h +65 -0
- data/ext/ruby_mapnik/_mapnik_color.rb.cpp +179 -0
- data/ext/ruby_mapnik/_mapnik_color.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_coord.rb.cpp +145 -0
- data/ext/ruby_mapnik/_mapnik_coord.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_datasource.rb.cpp +170 -0
- data/ext/ruby_mapnik/_mapnik_datasource.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_datasource_cache.rb.cpp +87 -0
- data/ext/ruby_mapnik/_mapnik_datasource_cache.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_envelope.rb.cpp +220 -0
- data/ext/ruby_mapnik/_mapnik_envelope.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_expression.rb.cpp +91 -0
- data/ext/ruby_mapnik/_mapnik_expression.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_feature.rb.cpp +93 -0
- data/ext/ruby_mapnik/_mapnik_feature.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_font_engine.rb.cpp +71 -0
- data/ext/ruby_mapnik/_mapnik_font_engine.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_layer.rb.cpp +208 -0
- data/ext/ruby_mapnik/_mapnik_layer.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_line_pattern_symbolizer.rb.cpp +71 -0
- data/ext/ruby_mapnik/_mapnik_line_pattern_symbolizer.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_line_symbolizer.rb.cpp +43 -0
- data/ext/ruby_mapnik/_mapnik_line_symbolizer.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_map.rb.cpp +489 -0
- data/ext/ruby_mapnik/_mapnik_map.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_markers_symbolizer.rb.cpp +140 -0
- data/ext/ruby_mapnik/_mapnik_markers_symbolizer.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_point_symbolizer.rb.cpp +150 -0
- data/ext/ruby_mapnik/_mapnik_point_symbolizer.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_polygon_pattern_symbolizer.rb.cpp +93 -0
- data/ext/ruby_mapnik/_mapnik_polygon_pattern_symbolizer.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_polygon_symbolizer.rb.cpp +89 -0
- data/ext/ruby_mapnik/_mapnik_polygon_symbolizer.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_projection.rb.cpp +100 -0
- data/ext/ruby_mapnik/_mapnik_projection.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_raster_colorizer.rb.cpp +162 -0
- data/ext/ruby_mapnik/_mapnik_raster_colorizer.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_raster_symbolizer.rb.cpp +87 -0
- data/ext/ruby_mapnik/_mapnik_raster_symbolizer.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_rule.rb.cpp +69 -0
- data/ext/ruby_mapnik/_mapnik_rule.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_shield_symbolizer.rb.cpp +86 -0
- data/ext/ruby_mapnik/_mapnik_shield_symbolizer.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_stroke.rb.cpp +188 -0
- data/ext/ruby_mapnik/_mapnik_stroke.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_style.rb.cpp +76 -0
- data/ext/ruby_mapnik/_mapnik_style.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_symbolizer.rb.cpp +75 -0
- data/ext/ruby_mapnik/_mapnik_symbolizer.rb.h +32 -0
- data/ext/ruby_mapnik/_mapnik_text_symbolizer.rb.cpp +471 -0
- data/ext/ruby_mapnik/_mapnik_text_symbolizer.rb.h +32 -0
- data/ext/ruby_mapnik/extconf.rb +80 -0
- data/ext/ruby_mapnik/ruby_mapnik.cpp +32 -0
- data/lib/mapnik.rb +1 -0
- data/lib/ruby_mapnik.rb +48 -0
- data/lib/ruby_mapnik/mapnik/font_engine.rb +35 -0
- data/lib/ruby_mapnik/mapnik/layer.rb +68 -0
- data/lib/ruby_mapnik/mapnik/map.rb +166 -0
- data/lib/ruby_mapnik/mapnik/projection.rb +44 -0
- data/lib/ruby_mapnik/mapnik/raster_colorizer.rb +55 -0
- data/lib/ruby_mapnik/mapnik/rule.rb +104 -0
- data/lib/ruby_mapnik/mapnik/stroke.rb +56 -0
- data/lib/ruby_mapnik/mapnik/style.rb +64 -0
- data/lib/ruby_mapnik/mapnik/tile.rb +93 -0
- data/script/console +2 -0
- data/test/data/TM_WORLD_BORDERS_SIMPL_0.3_MOD.dbf +0 -0
- data/test/data/TM_WORLD_BORDERS_SIMPL_0.3_MOD.prj +1 -0
- data/test/data/TM_WORLD_BORDERS_SIMPL_0.3_MOD.shp +0 -0
- data/test/data/TM_WORLD_BORDERS_SIMPL_0.3_MOD.shx +0 -0
- data/test/data/test_map.xml +15 -0
- data/test/test_helper.rb +29 -0
- data/test/test_line_pattern_symbolizer.rb +26 -0
- data/test/test_mapnik_color.rb +66 -0
- data/test/test_mapnik_coord.rb +92 -0
- data/test/test_mapnik_datasource.rb +49 -0
- data/test/test_mapnik_envelope.rb +232 -0
- data/test/test_mapnik_expression.rb +19 -0
- data/test/test_mapnik_feature.rb +29 -0
- data/test/test_mapnik_font_engine.rb +13 -0
- data/test/test_mapnik_layer.rb +121 -0
- data/test/test_mapnik_line_symbolizer.rb +25 -0
- data/test/test_mapnik_map.rb +211 -0
- data/test/test_mapnik_markers_symbolizer.rb +46 -0
- data/test/test_mapnik_point_symbolizer.rb +53 -0
- data/test/test_mapnik_polygon_symbolizer.rb +44 -0
- data/test/test_mapnik_projection.rb +46 -0
- data/test/test_mapnik_raster_colorizer.rb +56 -0
- data/test/test_mapnik_raster_symbolizer.rb +45 -0
- data/test/test_mapnik_rule.rb +45 -0
- data/test/test_mapnik_shield_symbolizer.rb +156 -0
- data/test/test_mapnik_stroke.rb +94 -0
- data/test/test_mapnik_style.rb +28 -0
- data/test/test_mapnik_symbolizer.rb +9 -0
- data/test/test_mapnik_text_symbolizer.rb +208 -0
- data/test/test_polygon_pattern_symbolizer.rb +34 -0
- data/test/test_ruby_mapnik.rb +34 -0
- data/yard/lib/yard/parser/generic_parser.rb +72 -0
- data/yard/lib/yard_generic.rb +18 -0
- metadata +333 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
Copyright (C) 2011 Elliot Laster
|
|
3
|
+
|
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
this software and associated documentation files (the ‘Software’), to deal in
|
|
6
|
+
the Software without restriction, including without limitation the rights to
|
|
7
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
8
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
9
|
+
so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
20
|
+
SOFTWARE.
|
|
21
|
+
*****************************************************************************/
|
|
22
|
+
#ifndef PIKA2_MAPNIK_RASTER_COLORIZER
|
|
23
|
+
#define PIKA2_MAPNIK_RASTER_COLORIZER
|
|
24
|
+
|
|
25
|
+
namespace Rice
|
|
26
|
+
{
|
|
27
|
+
class Module;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
void register_raster_colorizer(Rice::Module rb_mapnik);
|
|
31
|
+
|
|
32
|
+
#endif
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
Copyright (C) 2011 Elliot Laster
|
|
3
|
+
|
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
this software and associated documentation files (the ‘Software’), to deal in
|
|
6
|
+
the Software without restriction, including without limitation the rights to
|
|
7
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
8
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
9
|
+
so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
20
|
+
SOFTWARE.
|
|
21
|
+
*****************************************************************************/
|
|
22
|
+
#include "_mapnik_raster_symbolizer.rb.h"
|
|
23
|
+
|
|
24
|
+
// Rice
|
|
25
|
+
#include <rice/Data_Type.hpp>
|
|
26
|
+
#include <rice/Constructor.hpp>
|
|
27
|
+
#include <rice/Class.hpp>
|
|
28
|
+
#include <rice/Enum.hpp>
|
|
29
|
+
|
|
30
|
+
// Mapnik
|
|
31
|
+
#include <mapnik/version.hpp>
|
|
32
|
+
#include <mapnik/raster_symbolizer.hpp>
|
|
33
|
+
|
|
34
|
+
#if MAPNIK_VERSION >= 200100
|
|
35
|
+
#include <mapnik/image_scaling.hpp>
|
|
36
|
+
#endif
|
|
37
|
+
|
|
38
|
+
void register_raster_symbolizer(Rice::Module rb_mapnik){
|
|
39
|
+
|
|
40
|
+
#if MAPNIK_VERSION >= 200100
|
|
41
|
+
Rice::Enum<mapnik::scaling_method_e> scaling_enum = Rice::define_enum<mapnik::scaling_method_e>("ScalingMethod", rb_mapnik);
|
|
42
|
+
|
|
43
|
+
scaling_enum.define_value("NEAR",mapnik::SCALING_NEAR);
|
|
44
|
+
scaling_enum.define_value("BILINEAR",mapnik::SCALING_BILINEAR);
|
|
45
|
+
scaling_enum.define_value("BICUBIC", mapnik::SCALING_BICUBIC);
|
|
46
|
+
scaling_enum.define_value("SPLINE16", mapnik::SCALING_SPLINE16);
|
|
47
|
+
scaling_enum.define_value("SPLINE36", mapnik::SCALING_SPLINE36);
|
|
48
|
+
scaling_enum.define_value("HANNING", mapnik::SCALING_HANNING);
|
|
49
|
+
scaling_enum.define_value("HAMMING", mapnik::SCALING_HAMMING);
|
|
50
|
+
scaling_enum.define_value("HERMITE", mapnik::SCALING_HERMITE);
|
|
51
|
+
scaling_enum.define_value("KAISER", mapnik::SCALING_KAISER);
|
|
52
|
+
scaling_enum.define_value("QUADRIC", mapnik::SCALING_QUADRIC);
|
|
53
|
+
scaling_enum.define_value("CATROM", mapnik::SCALING_CATROM);
|
|
54
|
+
scaling_enum.define_value("GAUSSIAN", mapnik::SCALING_GAUSSIAN);
|
|
55
|
+
scaling_enum.define_value("BESSEL", mapnik::SCALING_BESSEL);
|
|
56
|
+
scaling_enum.define_value("MITCHELL", mapnik::SCALING_MITCHELL);
|
|
57
|
+
scaling_enum.define_value("SINC", mapnik::SCALING_SINC);
|
|
58
|
+
scaling_enum.define_value("LANCZOS", mapnik::SCALING_LANCZOS);
|
|
59
|
+
scaling_enum.define_value("BLACKMAN", mapnik::SCALING_BLACKMAN);
|
|
60
|
+
scaling_enum.define_value("BILINEAR8", mapnik::SCALING_BILINEAR8);
|
|
61
|
+
#endif
|
|
62
|
+
|
|
63
|
+
/*
|
|
64
|
+
@@Module_var rb_mapnik = Mapnik
|
|
65
|
+
*/
|
|
66
|
+
Rice::Data_Type< mapnik::raster_symbolizer > rb_craster_symbolizer = Rice::define_class_under< mapnik::raster_symbolizer >(rb_mapnik, "RasterSymbolizer");
|
|
67
|
+
rb_craster_symbolizer.define_constructor(Rice::Constructor< mapnik::raster_symbolizer >());
|
|
68
|
+
|
|
69
|
+
rb_craster_symbolizer.define_method("mode", &mapnik::raster_symbolizer::get_mode);
|
|
70
|
+
rb_craster_symbolizer.define_method("mode=", &mapnik::raster_symbolizer::set_mode);
|
|
71
|
+
|
|
72
|
+
#if MAPNIK_VERSION >= 200100
|
|
73
|
+
rb_craster_symbolizer.define_method("scaling", &mapnik::raster_symbolizer::get_scaling_method);
|
|
74
|
+
rb_craster_symbolizer.define_method("scaling=", &mapnik::raster_symbolizer::set_scaling_method);
|
|
75
|
+
#else
|
|
76
|
+
rb_craster_symbolizer.define_method("scaling", &mapnik::raster_symbolizer::get_scaling);
|
|
77
|
+
rb_craster_symbolizer.define_method("scaling=", &mapnik::raster_symbolizer::set_scaling);
|
|
78
|
+
#endif
|
|
79
|
+
|
|
80
|
+
rb_craster_symbolizer.define_method("opacity", &mapnik::raster_symbolizer::get_opacity);
|
|
81
|
+
rb_craster_symbolizer.define_method("opacity=", &mapnik::raster_symbolizer::set_opacity);
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
rb_craster_symbolizer.define_method("filter_factor", &mapnik::raster_symbolizer::get_filter_factor);
|
|
85
|
+
rb_craster_symbolizer.define_method("filter_factor=", &mapnik::raster_symbolizer::set_filter_factor);
|
|
86
|
+
|
|
87
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
Copyright (C) 2011 Elliot Laster
|
|
3
|
+
|
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
this software and associated documentation files (the ‘Software’), to deal in
|
|
6
|
+
the Software without restriction, including without limitation the rights to
|
|
7
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
8
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
9
|
+
so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
20
|
+
SOFTWARE.
|
|
21
|
+
*****************************************************************************/
|
|
22
|
+
#ifndef PIKA2_MAPNIK_RASTER_SYMBOLIZER
|
|
23
|
+
#define PIKA2_MAPNIK_RASTER_SYMBOLIZER
|
|
24
|
+
|
|
25
|
+
namespace Rice
|
|
26
|
+
{
|
|
27
|
+
class Module;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
void register_raster_symbolizer(Rice::Module rb_mapnik);
|
|
31
|
+
|
|
32
|
+
#endif
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
#include "_mapnik_rule.rb.h"
|
|
2
|
+
|
|
3
|
+
// Rice
|
|
4
|
+
#include <rice/Data_Type.hpp>
|
|
5
|
+
#include <rice/Constructor.hpp>
|
|
6
|
+
#include <rice/Class.hpp>
|
|
7
|
+
#include <rice/Array.hpp>
|
|
8
|
+
|
|
9
|
+
// Mapnik
|
|
10
|
+
#include <mapnik/rule.hpp>
|
|
11
|
+
|
|
12
|
+
template<>
|
|
13
|
+
Rice::Object to_ruby<std::vector<mapnik::symbolizer> >(std::vector<mapnik::symbolizer> const & x)
|
|
14
|
+
{
|
|
15
|
+
return Rice::Array(x.begin(), x.end());
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
void register_rule(Rice::Module rb_mapnik){
|
|
19
|
+
/*
|
|
20
|
+
@@Module_var rb_mapnik = Mapnik
|
|
21
|
+
*/
|
|
22
|
+
Rice::Data_Type< mapnik::rule > rb_crule = Rice::define_class_under< mapnik::rule >(rb_mapnik, "Rule");
|
|
23
|
+
|
|
24
|
+
/*
|
|
25
|
+
* Document-method: new
|
|
26
|
+
* @return [Mapnik::Rule]
|
|
27
|
+
*/
|
|
28
|
+
rb_crule.define_constructor(Rice::Constructor< mapnik::rule >());
|
|
29
|
+
|
|
30
|
+
/*
|
|
31
|
+
* Document-method: name
|
|
32
|
+
* @return [String]
|
|
33
|
+
*/
|
|
34
|
+
rb_crule.define_method("name", &mapnik::rule::get_name);
|
|
35
|
+
|
|
36
|
+
/*
|
|
37
|
+
* Document-method: name=
|
|
38
|
+
* call-seq:
|
|
39
|
+
* name=(new_name)
|
|
40
|
+
* @param [String]
|
|
41
|
+
* @return [nil]
|
|
42
|
+
*/
|
|
43
|
+
rb_crule.define_method("name=", &mapnik::rule::set_name, Rice::Arg("new_name"));
|
|
44
|
+
|
|
45
|
+
/*
|
|
46
|
+
* Document-method: filter
|
|
47
|
+
* @return [Mapnik::Expression]
|
|
48
|
+
*/
|
|
49
|
+
rb_crule.define_method("filter", &mapnik::rule::get_filter);
|
|
50
|
+
|
|
51
|
+
/*
|
|
52
|
+
* Document-method: filter=
|
|
53
|
+
* call-seq:
|
|
54
|
+
* filter=(new_filter)
|
|
55
|
+
* @param [Mapnik::Expression]
|
|
56
|
+
* @return [nil]
|
|
57
|
+
*/
|
|
58
|
+
rb_crule.define_method("filter=", &mapnik::rule::set_filter, Rice::Arg("new_filter"));
|
|
59
|
+
|
|
60
|
+
// Dont-Document-method: __symbols__
|
|
61
|
+
rb_crule.define_method("__symbols__", &mapnik::rule::get_symbolizers);
|
|
62
|
+
|
|
63
|
+
// Dont-Document-method: __append_symbol__
|
|
64
|
+
rb_crule.define_method("__append_symbol__", &mapnik::rule::append, Rice::Arg("new_symbol"));
|
|
65
|
+
|
|
66
|
+
// Dont-Document-method: __remove_symbol__
|
|
67
|
+
rb_crule.define_method("__remove_symbol__", &mapnik::rule::remove_at, Rice::Arg("index"));
|
|
68
|
+
|
|
69
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
Copyright (C) 2011 Elliot Laster
|
|
3
|
+
|
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
this software and associated documentation files (the ‘Software’), to deal in
|
|
6
|
+
the Software without restriction, including without limitation the rights to
|
|
7
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
8
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
9
|
+
so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
20
|
+
SOFTWARE.
|
|
21
|
+
*****************************************************************************/
|
|
22
|
+
#ifndef PIKA2_MAPNIK_RULE
|
|
23
|
+
#define PIKA2_MAPNIK_RULE
|
|
24
|
+
|
|
25
|
+
namespace Rice
|
|
26
|
+
{
|
|
27
|
+
class Module;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
void register_rule(Rice::Module rb_mapnik);
|
|
31
|
+
|
|
32
|
+
#endif
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
Copyright (C) 2011 Elliot Laster
|
|
3
|
+
|
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
this software and associated documentation files (the ‘Software’), to deal in
|
|
6
|
+
the Software without restriction, including without limitation the rights to
|
|
7
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
8
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
9
|
+
so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
20
|
+
SOFTWARE.
|
|
21
|
+
*****************************************************************************/
|
|
22
|
+
#include "_mapnik_shield_symbolizer.rb.h"
|
|
23
|
+
|
|
24
|
+
// Rice
|
|
25
|
+
#include <rice/Data_Type.hpp>
|
|
26
|
+
#include <rice/Constructor.hpp>
|
|
27
|
+
#include <rice/Class.hpp>
|
|
28
|
+
#include <rice/Enum.hpp>
|
|
29
|
+
|
|
30
|
+
// Mapnik
|
|
31
|
+
#include <mapnik/text_symbolizer.hpp>
|
|
32
|
+
#include <mapnik/shield_symbolizer.hpp>
|
|
33
|
+
|
|
34
|
+
namespace{
|
|
35
|
+
|
|
36
|
+
Rice::Object get_shield_displacement(const mapnik::shield_symbolizer& t){
|
|
37
|
+
mapnik::position pos = t.get_shield_displacement();
|
|
38
|
+
Rice::Array out;
|
|
39
|
+
out.push(pos.first);
|
|
40
|
+
out.push(pos.second);
|
|
41
|
+
return out;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
void set_shield_displacement(mapnik::shield_symbolizer & t, Rice::Array ary){
|
|
45
|
+
double x = from_ruby<double>(ary[0]);
|
|
46
|
+
double y = from_ruby<double>(ary[1]);
|
|
47
|
+
t.set_shield_displacement(x,y);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
}
|
|
51
|
+
void register_shield_symbolizer(Rice::Module rb_mapnik){
|
|
52
|
+
/*
|
|
53
|
+
@@Module_var rb_mapnik = Mapnik
|
|
54
|
+
*/
|
|
55
|
+
Rice::Data_Type< mapnik::shield_symbolizer > rb_cshield_symbolizer = Rice::define_class_under< mapnik::shield_symbolizer, mapnik::text_symbolizer >(rb_mapnik, "ShieldSymbolizer");
|
|
56
|
+
|
|
57
|
+
/*
|
|
58
|
+
* Document-method: new
|
|
59
|
+
* call-seq:
|
|
60
|
+
* new(expression, face_name, size, color, file)
|
|
61
|
+
*
|
|
62
|
+
* @param [Mapnik::Expression] expression
|
|
63
|
+
* @param [String] face_name
|
|
64
|
+
* @param [Integer] size
|
|
65
|
+
* @param [Mapnik::Color] color
|
|
66
|
+
* @param [Mapnik::PathExpression] file
|
|
67
|
+
*
|
|
68
|
+
* @return [Mapnik::ShieldSymbolizer]
|
|
69
|
+
*/
|
|
70
|
+
rb_cshield_symbolizer.define_constructor(Rice::Constructor< mapnik::shield_symbolizer, mapnik::expression_ptr, std::string, unsigned, mapnik::color, mapnik::path_expression_ptr >());
|
|
71
|
+
|
|
72
|
+
/*
|
|
73
|
+
* Document-method: shield_displacement
|
|
74
|
+
* @return [Array] Two element array [x,y]
|
|
75
|
+
*/
|
|
76
|
+
rb_cshield_symbolizer.define_method("shield_displacement", &get_shield_displacement);
|
|
77
|
+
|
|
78
|
+
/*
|
|
79
|
+
* Document-method: shield_displacement=
|
|
80
|
+
* call-seq:
|
|
81
|
+
* shield_displacement=(new_displacement)
|
|
82
|
+
* @param [Array] new_displacement Two element array [x,y]
|
|
83
|
+
*/
|
|
84
|
+
rb_cshield_symbolizer.define_method("shield_displacement=", &set_shield_displacement);
|
|
85
|
+
|
|
86
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
Copyright (C) 2011 Elliot Laster
|
|
3
|
+
|
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
this software and associated documentation files (the ‘Software’), to deal in
|
|
6
|
+
the Software without restriction, including without limitation the rights to
|
|
7
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
8
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
9
|
+
so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
20
|
+
SOFTWARE.
|
|
21
|
+
*****************************************************************************/
|
|
22
|
+
#ifndef PIKA2_MAPNIK_SHIELD_SYMBOLIZER
|
|
23
|
+
#define PIKA2_MAPNIK_SHIELD_SYMBOLIZER
|
|
24
|
+
|
|
25
|
+
namespace Rice
|
|
26
|
+
{
|
|
27
|
+
class Module;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
void register_shield_symbolizer(Rice::Module rb_mapnik);
|
|
31
|
+
|
|
32
|
+
#endif
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
Copyright (C) 2011 Elliot Laster
|
|
3
|
+
|
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
this software and associated documentation files (the ‘Software’), to deal in
|
|
6
|
+
the Software without restriction, including without limitation the rights to
|
|
7
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
8
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
9
|
+
so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
20
|
+
SOFTWARE.
|
|
21
|
+
*****************************************************************************/
|
|
22
|
+
#include "_mapnik_stroke.rb.h"
|
|
23
|
+
|
|
24
|
+
// Rice
|
|
25
|
+
#include <rice/Data_Type.hpp>
|
|
26
|
+
#include <rice/Constructor.hpp>
|
|
27
|
+
#include <rice/Class.hpp>
|
|
28
|
+
#include <rice/Enum.hpp>
|
|
29
|
+
#include <rice/Array.hpp>
|
|
30
|
+
#include <rice/Hash.hpp>
|
|
31
|
+
#include <rice/Symbol.hpp>
|
|
32
|
+
|
|
33
|
+
// Mapnik
|
|
34
|
+
#include <mapnik/stroke.hpp>
|
|
35
|
+
|
|
36
|
+
namespace {
|
|
37
|
+
|
|
38
|
+
Rice::Object get_dashes(const mapnik::stroke& stroke){
|
|
39
|
+
Rice::Array out;
|
|
40
|
+
if (stroke.has_dash()) {
|
|
41
|
+
mapnik::dash_array const& dash = stroke.get_dash_array();
|
|
42
|
+
mapnik::dash_array::const_iterator iter = dash.begin();
|
|
43
|
+
mapnik::dash_array::const_iterator end = dash.end();
|
|
44
|
+
for (; iter != end; ++iter) {
|
|
45
|
+
Rice::Array tuple;
|
|
46
|
+
tuple.push(iter->first);
|
|
47
|
+
tuple.push(iter->second);
|
|
48
|
+
out.push(tuple);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
return out;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
mapnik::line_cap_enum get_stroke_line_cap(mapnik::stroke const & self){
|
|
55
|
+
mapnik::line_cap_enum line_cap = self.get_line_cap();
|
|
56
|
+
return line_cap;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
void set_stroke_line_cap(mapnik::stroke & self, mapnik::line_cap_enum val){
|
|
60
|
+
self.set_line_cap(val);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
mapnik::line_join_enum get_stroke_line_join(mapnik::stroke const & self){
|
|
64
|
+
mapnik::line_join_enum line_join = self.get_line_join();
|
|
65
|
+
return line_join;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
void set_stroke_line_join(mapnik::stroke & self, mapnik::line_join_enum val){
|
|
69
|
+
self.set_line_join(val);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
void register_stroke(Rice::Module rb_mapnik){
|
|
75
|
+
/*
|
|
76
|
+
@@Module_var rb_mapnik = Mapnik
|
|
77
|
+
*/
|
|
78
|
+
Rice::Data_Type< mapnik::stroke > rb_cstroke = Rice::define_class_under< mapnik::stroke >(rb_mapnik, "Stroke");
|
|
79
|
+
|
|
80
|
+
/*
|
|
81
|
+
* Document-method: new
|
|
82
|
+
* call-seq:
|
|
83
|
+
* new(color, width)
|
|
84
|
+
* @param [Mapnik::Color] color
|
|
85
|
+
* @param [Float] width
|
|
86
|
+
*
|
|
87
|
+
* @return [Mapnik::Stroke]
|
|
88
|
+
*/
|
|
89
|
+
rb_cstroke.define_constructor(Rice::Constructor< mapnik::stroke, mapnik::color, float >());
|
|
90
|
+
|
|
91
|
+
/*
|
|
92
|
+
* Document-method: color
|
|
93
|
+
* @return [Mapnik::Color]
|
|
94
|
+
*/
|
|
95
|
+
rb_cstroke.define_method("color", &mapnik::stroke::get_color);
|
|
96
|
+
|
|
97
|
+
/*
|
|
98
|
+
* Document-method: color=
|
|
99
|
+
* call-seq:
|
|
100
|
+
* color=(color)
|
|
101
|
+
* @param [Mapnik::Color] color
|
|
102
|
+
* @return [nil]
|
|
103
|
+
*/
|
|
104
|
+
rb_cstroke.define_method("color=", &mapnik::stroke::set_color, Rice::Arg("new_color"));
|
|
105
|
+
|
|
106
|
+
/*
|
|
107
|
+
* Document-method: opacity
|
|
108
|
+
* @return [Float]
|
|
109
|
+
*/
|
|
110
|
+
rb_cstroke.define_method("opacity", &mapnik::stroke::get_opacity);
|
|
111
|
+
|
|
112
|
+
/*
|
|
113
|
+
* Document-method: opacity=
|
|
114
|
+
* call-seq:
|
|
115
|
+
* opactiy=(new_value)
|
|
116
|
+
* @param [Float] new_value
|
|
117
|
+
* @return [nil]
|
|
118
|
+
*/
|
|
119
|
+
rb_cstroke.define_method("opacity=", &mapnik::stroke::set_opacity, Rice::Arg("new_opacity"));
|
|
120
|
+
|
|
121
|
+
/*
|
|
122
|
+
* Document-method: gamma
|
|
123
|
+
* @return [Float]
|
|
124
|
+
*/
|
|
125
|
+
rb_cstroke.define_method("gamma", &mapnik::stroke::get_gamma);
|
|
126
|
+
|
|
127
|
+
/*
|
|
128
|
+
* Document-method: gamma=
|
|
129
|
+
* call-seq:
|
|
130
|
+
* gamma=(new_value)
|
|
131
|
+
* @param [Float] new_value
|
|
132
|
+
* @return [nil]
|
|
133
|
+
*/
|
|
134
|
+
rb_cstroke.define_method("gamma=", &mapnik::stroke::set_gamma, Rice::Arg("new_gamma"));
|
|
135
|
+
|
|
136
|
+
/*
|
|
137
|
+
* Document-method: width
|
|
138
|
+
* @return [Float]
|
|
139
|
+
*/
|
|
140
|
+
rb_cstroke.define_method("width", &mapnik::stroke::get_width);
|
|
141
|
+
|
|
142
|
+
/*
|
|
143
|
+
* Document-method: width=
|
|
144
|
+
* call-seq:
|
|
145
|
+
* width=(new_value)
|
|
146
|
+
* @param [Float] new_value
|
|
147
|
+
* @return [nil]
|
|
148
|
+
*/
|
|
149
|
+
rb_cstroke.define_method("width=", &mapnik::stroke::set_width, Rice::Arg("new_width"));
|
|
150
|
+
|
|
151
|
+
/*
|
|
152
|
+
* Document-method: dash_offset
|
|
153
|
+
* @return [Float]
|
|
154
|
+
*/
|
|
155
|
+
rb_cstroke.define_method("dash_offset", &mapnik::stroke::dash_offset);
|
|
156
|
+
|
|
157
|
+
/*
|
|
158
|
+
* Document-method: dash_offset=
|
|
159
|
+
* call-seq:
|
|
160
|
+
* dash_offset=(new_value)
|
|
161
|
+
* @param [Float] new_value
|
|
162
|
+
* @return [nil]
|
|
163
|
+
*/
|
|
164
|
+
rb_cstroke.define_method("dash_offset=", &mapnik::stroke::set_dash_offset, Rice::Arg("new_dash_offset"));
|
|
165
|
+
|
|
166
|
+
rb_cstroke.define_method("line_cap", &get_stroke_line_cap);
|
|
167
|
+
rb_cstroke.define_method("line_cap=", &set_stroke_line_cap);
|
|
168
|
+
|
|
169
|
+
rb_cstroke.define_method("line_join", &get_stroke_line_join);
|
|
170
|
+
rb_cstroke.define_method("line_join=", &set_stroke_line_join);
|
|
171
|
+
|
|
172
|
+
// Dont-Document-method: __dashes__
|
|
173
|
+
rb_cstroke.define_method("__dashes__", &get_dashes);
|
|
174
|
+
|
|
175
|
+
// Dont-Document-method: __add_dash__
|
|
176
|
+
rb_cstroke.define_method("__add_dash__", &mapnik::stroke::add_dash);
|
|
177
|
+
|
|
178
|
+
Rice::Enum<mapnik::line_cap_enum> rb_eline_cap_enum = Rice::define_enum<mapnik::line_cap_enum>("LineCap", rb_mapnik);
|
|
179
|
+
rb_eline_cap_enum.define_value("BUTT_CAP", mapnik::BUTT_CAP);
|
|
180
|
+
rb_eline_cap_enum.define_value("SQUARE_CAP", mapnik::SQUARE_CAP);
|
|
181
|
+
rb_eline_cap_enum.define_value("ROUND_CAP", mapnik::ROUND_CAP);
|
|
182
|
+
|
|
183
|
+
Rice::Enum<mapnik::line_join_enum> rb_eline_join_enum = Rice::define_enum<mapnik::line_join_enum>("LineJoin", rb_mapnik);
|
|
184
|
+
rb_eline_join_enum.define_value("MITER_JOIN", mapnik::MITER_JOIN);
|
|
185
|
+
rb_eline_join_enum.define_value("MITER_REVERT_JOIN", mapnik::MITER_REVERT_JOIN);
|
|
186
|
+
rb_eline_join_enum.define_value("ROUND_JOIN", mapnik::ROUND_JOIN);
|
|
187
|
+
rb_eline_join_enum.define_value("BEVEL_JOIN", mapnik::BEVEL_JOIN);
|
|
188
|
+
}
|