From 301ed5c3ce902eccac1dde1071ad3824dcd7179c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Wed, 27 Jun 2012 21:55:37 +0200 Subject: [PATCH] 2.12 notes - explain how to disable hw accelerated animations (refs #542) --- notes/2.12.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/notes/2.12.md b/notes/2.12.md index 1cb4aab675..c79d9d57a4 100644 --- a/notes/2.12.md +++ b/notes/2.12.md @@ -95,6 +95,19 @@ Corresponding issues/pull requests: * https://github.com/openlayers/openlayers/pull/127 +Note: Issue #511 has reported that tile animation causes flickering/blinking in +the iOS native browser. Forcing the browser to use hardware-accelerated +animations fixed the issue, but #542 has reported that it also considerably +slows down freehand drawing on iOS. If you're experiencing this and want to +disable hardware-accelerated animations you can use the following rule in your +CSS: + + @media (-webkit-transform-3d) { + img.olTileImage { + -webkit-transform: none; + } + } + ## Tile Queue The tiling code has been overhauled so tile loading in grid layers is now done in a queue.