Skip to content

Commit

Permalink
Move text and camera off tile boundaries to prevent double drawing of…
Browse files Browse the repository at this point in the history
… symbols. (#5199)

In support of passing tests in gl-native [port](mapbox/mapbox-gl-native#9870)
  • Loading branch information
Asheem Mamoowala authored Aug 28, 2017
1 parent ff7adb3 commit 41c6ce1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"width": 256
}
},
"center": [ 0, 0 ],
"center": [ 35, 0 ],
"zoom": 1.5,
"sources": {
"point": {
Expand All @@ -19,15 +19,15 @@
"properties": { "spacing": "varying" },
"geometry": {
"type": "Point",
"coordinates": [ 0, 15 ]
"coordinates": [ 35, 15 ]
}
},
{
"type": "Feature",
"properties": { "spacing": "fixed" },
"geometry": {
"type": "Point",
"coordinates": [ 0, -15 ]
"coordinates": [ 35, -15 ]
}
}
]
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"width": 512
}
},
"center": [ 0, 0 ],
"center": [ 0, -15 ],
"zoom": 1.5,
"sources": {
"point": {
Expand All @@ -22,7 +22,7 @@
},
"geometry": {
"type": "Point",
"coordinates": [ -25, 0 ]
"coordinates": [ -25, -15 ]
}
},
{
Expand All @@ -33,7 +33,7 @@
},
"geometry": {
"type": "Point",
"coordinates": [ 25, 0 ]
"coordinates": [ 25, -15 ]
}
}
]
Expand Down

0 comments on commit 41c6ce1

Please sign in to comment.