You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _posts/blog/2015-07-11-3.0-cartographer.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,9 +42,17 @@ For PostGIS datasources with polygons that follow the left-hand rule instead, if
42
42
43
43
The existing `line-offset` in the stylesheet will need to be inverted.
44
44
45
-
### Text offsetting from lines
45
+
### Offsetting from lines
46
+
Direction of all offsets from lines is inverted. These properties have to be changed to achieve compatibility between 2.2 and 3.0:
46
47
47
-
Handling of text offset from lines has changed. To get consistent behavior between 2.2 and 3.0, use `vertical-alignment: middle`. This may require adjustments to the `text-dy` value.
48
+
*`TextSymbolizer` with line placement
49
+
* swap `top` and `bottom` values in `vertical-alignment`
50
+
* multiple `dy` by -1
51
+
* Take care of `vertical-alignment` and `dy` in `Layout` and `Placement` nodes.
52
+
*`LineSymbolizer`, `LinePatternSymbolizer`, `MarkersSymbolizer` with line placement
53
+
* multiple `offset` by -1
54
+
55
+
Special attention should be taken to `TextSymbolizer` when `dy` is not zero and `vertical-alignment` is not set. In such situation `vertical-alignment="middle"` needs to be set to get consistent behavior between 2.2 and 3.0.
After a long summer of coding and bug fixing, the Mapnik team is excited to announce the latest release in 3.0.x series - [v3.0.12](https://github.com/mapnik/mapnik/releases/tag/v3.0.12) ([La Save](https://fr.wikipedia.org/wiki/Save_(Garonne))).
11
+
12
+
Everyone is encouraged to upgrade as this new release offers improved [stability and features](https://github.com/mapnik/mapnik/compare/v3.0.11...v3.0.12).
13
+
14
+
Here is a detailed list of changes: [CHANGELOG](https://github.com/mapnik/mapnik/blob/master/CHANGELOG.md#3012). Big thank you to everyone involved!
15
+
## Download
16
+
17
+
Follow the links to [download the official source](https://github.com/mapnik/mapnik/releases/download/v3.0.12/mapnik-v3.0.12.tar.bz2) directly or grab it from our [downloads page](/pages/downloads.html).
Copy file name to clipboardExpand all lines: pages/downloads.md
+15-14Lines changed: 15 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,30 +5,31 @@ title: Downloads
5
5
6
6
## Latest Release
7
7
8
-
The latest release is Mapnik v3.0.10.
8
+
The latest release is Mapnik v3.0.12.
9
9
10
-
## Mapnik 3.0.10
10
+
## Mapnik 3.0.12
11
11
12
-
Release Date: 26 February 2016
12
+
Release Date: 8 September 2016
13
13
14
14
### Prebuilt Binaries
15
15
16
-
We plan on providing prebuilt binaries soon for Mapnik 3.0.10.
16
+
We plan on providing prebuilt binaries soon for Mapnik 3.0.12.
17
17
18
18
### Source Installation
19
19
20
-
To build Mapnik v3.0.10 from source either download the [v3.0.10 tarball](https://mapnik.s3.amazonaws.com/dist/v3.0.10/mapnik-v3.0.10.tar.bz2) or pull directly from github:
20
+
To build Mapnik v3.0.12 from source either download the [v3.0.12 tarball](https://github.com/mapnik/mapnik/releases/download/v3.0.12/mapnik-v3.0.12.tar.bz2) or pull directly from github:
21
21
22
-
git clone https://github.com/mapnik/mapnik.git
23
-
git checkout v3.0.10
24
-
git submodule update --init
25
-
./configure && make && make test
22
+
git clone https://github.com/mapnik/mapnik.git
23
+
cd mapnik
24
+
git checkout v3.0.12
25
+
git submodule update --init
26
+
./configure && make && make test
26
27
27
-
For source install help see the [Install docs](https://github.com/mapnik/mapnik/blob/v3.0.10/INSTALL.md)
28
+
For source install help see the [Install docs](https://github.com/mapnik/mapnik/blob/v3.0.12/INSTALL.md)
28
29
29
30
You can also use git to fetch the latest code (will default to `master` branch):
30
31
31
-
git clone https://github.com/mapnik/mapnik.git
32
+
git clone https://github.com/mapnik/mapnik.git
32
33
33
34
Browse the code at [github](https://github.com/mapnik/mapnik).
34
35
@@ -45,7 +46,7 @@ Release Date: June 3rd, 2013
45
46
46
47
The recommend install method on OS X is `homebrew`. If you are running `homebrew` simply do:
47
48
48
-
brew update && brew install mapnik
49
+
brew update && brew install mapnik
49
50
50
51
We also provide a pre-built [OS X 64 bit package](http://mapnik.s3.amazonaws.com/dist/v2.2.0/mapnik-osx-v2.2.0.dmg) that will install into the same place (`/usr/local`) as homebrew.
51
52
@@ -68,8 +69,8 @@ We also provide a pre-built [OS X 64 bit package](http://mapnik.s3.amazonaws.com
68
69
69
70
To build Mapnik v2.2.0 from source either download the [v2.2.0 tarball](http://mapnik.s3.amazonaws.com/dist/v2.2.0/mapnik-v2.2.0.tar.bz2) or pull directly from github:
70
71
71
-
git clone https://github.com/mapnik/mapnik.git
72
-
git checkout v2.2.0
72
+
git clone https://github.com/mapnik/mapnik.git
73
+
git checkout v2.2.0
73
74
74
75
For source install help see the [Install docs](https://github.com/mapnik/mapnik/blob/v2.2.0/INSTALL.md)
0 commit comments