ahocevar
80482acdad
Merge pull request #962 from ahocevar/tilequeue-throttling
...
Bring back throttling for tile loading. r=@bartvde
2013-05-06 07:31:24 -07:00
Tim Schaub
90535134d4
Spelling
...
See 44a2b50455 (commitcomment-3123666)
2013-05-01 09:26:55 -06:00
Marc Jansen
989464cd93
Minor formatting changes.
2013-05-01 17:51:27 +03:00
ahocevar
1aabcde0a6
Merge pull request #827 from geops/fixed-strategy
...
Improved Fixed Strategy
2013-04-30 09:21:27 -07:00
ahocevar
70bfba3011
Fixing typo
2013-04-30 15:45:26 +03:00
friedjoff
54655c7fca
Merge branch 'master' into fixed-strategy
2013-04-30 12:44:17 +02:00
ahocevar
779c97f43e
Using no buffer by default, because it makes no sense with TileManager
...
And while we're at it, simplify the example to use the OSM layer and the
new default for transitionEffect.
2013-04-29 14:50:43 +02:00
ahocevar
48efd43250
Bring back throttling for tile loading
...
In OpenLayers 2.12, only one tile was loaded per animation frame. This
change brings back something similar as part of the tile manager. But we
do not use requestAnimationFrame anymore, because @elemoine pointed out
that browsers may give requestAnimationFrame invoked functions a higher
priority than setTimeout invoked functions.
The reason for this change is
http://lists.osgeo.org/pipermail/openlayers-users/2013-April/028063.html .
2013-04-29 14:20:18 +02:00
ahocevar
142546c6d5
Merge pull request #961 from ahocevar/modifyfeature-layerorder
...
Regression: ModifyFeature control not act if layer is not on top. r=@jorix
2013-04-29 04:25:59 -07:00
ahocevar
9d6ce21109
Raise layer that's being modified
2013-04-27 21:46:22 +02:00
Marc Jansen
f3c0348567
Merge pull request #543 from jorix/no-manual-tests2
...
Can test some manual tests as normal tests.
2013-04-26 00:32:48 -07:00
Bart van den Eijnden
ec4d3a48d7
Merge pull request #224 from jorix/3402-touch_logic_to_superclass
...
Move some touch logic to the `handler` base class
2013-04-25 07:42:39 -07:00
Xavier Mamano
5ecc54a689
Take into account the comments of bartvde
2013-04-25 16:25:56 +02:00
Frédéric Junod
7beb33f99e
Merge pull request #357 from fredj/deprecated
...
mv AnchoredBubble to deprecated.js, rm LayerSwitcher.roundedCorner. r=bartvde
2013-04-25 01:41:08 -07:00
Frederic Junod
96fc2d71e3
Remove Rico/*.js from debug loader.
2013-04-25 10:26:58 +02:00
Frederic Junod
5ed18a9708
Remove deprecated roundedCorner option from LayerSwitcher control.
2013-04-25 10:26:58 +02:00
Frederic Junod
5a3c06aa7e
Move OpenLayers.Popup.AnchoredBubble to deprecated.js
2013-04-25 10:25:03 +02:00
ahocevar
27ccd3cbaa
Completing mock for 2D transforms (see #950 )
2013-04-24 22:03:37 +02:00
Xavier Mamano
43a8821ce6
Can test some manual tests as normal tests.
2013-04-24 17:21:25 +02:00
ahocevar
6af9f5f3d3
Merge pull request #954 from ahocevar/url-compare
...
URL comparison fails in IE8. r=@bartvde
2013-04-24 07:36:44 -07:00
ahocevar
2782fa47c8
URL comparison fails in IE8
...
The W3C standard says that setAttribute/getAttribute on any DOM element is
a simple setter/getter thing. IE8 tries to be smarter and returns the full
URL when calling getAttribute('src') on an image instead of the one that
was set with setAttribute('src').
This change makes sure that urls are compared properly, also in IE8.
2013-04-24 15:41:04 +02:00
ahocevar
11977f57a3
Making pagePosition test work in IE8
2013-04-24 14:31:33 +02:00
ahocevar
9f53506754
Tile bounds changed with #517 to remove white lines between tiles
2013-04-24 14:15:12 +02:00
ahocevar
acc497bf3c
Making TouchNavigation tests work in Firefox
2013-04-24 01:01:56 +02:00
Marc Jansen
3ef69b967d
Merge pull request #631 from jorix/format_undefined
...
Avoid breaking the "OpenLayers.String.format" execution
2013-04-23 13:54:15 -07:00
ahocevar
11a187ffaf
Merge pull request #849 from luizvital/master
...
Change language code from 'pt-br' to 'pt-BR'
2013-04-23 12:59:26 -07:00
ahocevar
e0f0744500
Merge pull request #946 from Turbo87/uglify
...
build: Added "uglify-js" as optional compressor
2013-04-23 12:55:15 -07:00
Bart van den Eijnden
872502311f
remove trailing comma from cluster strategy tests (see #950 )
2013-04-23 15:36:52 +02:00
Bart van den Eijnden
d63055f28c
remove trailing comma from PanZoomBar tests (see #950 )
2013-04-23 15:25:06 +02:00
ahocevar
60a966714d
Hack for making page position calculations work
...
Many browsers do very limited rendering/reflow on hidden IFrames. By making
the test IFrame visible, we get everything rendered like a real page. This
is a partial fix for #947 .
2013-04-23 14:22:59 +02:00
Bart van den Eijnden
415265db40
protect 2 Google test cases for validkey
2013-04-23 13:28:39 +02:00
Bart van den Eijnden
2613ccb504
fix WMSDescribeLayer format exception test case in IE9 and IE10 (see #948 )
2013-04-23 13:17:53 +02:00
Bart van den Eijnden
7cb99834e3
fix opacity tests in IE10 (see #948 )
2013-04-23 13:02:29 +02:00
ahocevar
2e88ca6905
Use other edge and outside coordinates
...
This avoids a failing test due to anti-aliasing artifacts in Safari.
2013-04-23 12:40:15 +02:00
ahocevar
7cb38f69d5
Merge pull request #780 from ahocevar/ms-pointer-events
...
Touch Navigation doesn't work in Internet Explorer 10. r=@bartvde,@gregersrygg,@mpriour
2013-04-23 01:46:10 -07:00
ahocevar
aa2345693a
Addressing @bartvde's review comments
2013-04-23 10:45:08 +02:00
Tobias Bieniek
444d9a06ae
build: Added "uglify-js" as optional compressor
2013-04-22 23:11:57 +02:00
ahocevar
1bdfb492d5
Merge pull request #944 from Karamell/labelOutlineOpacity2
...
added a labelOutlineOpacity attribute to SVG and Canvas Renderers.
2013-04-22 00:53:30 -07:00
Karamell
76efa60888
added a labelOutlineOpacity attribute to SVG and Canvas Renderers.
2013-04-21 11:04:06 +02:00
ahocevar
87d8b6003d
Merge pull request #927 from adv-isu/HandlerPathUndoTouchFix2
...
Improved touch support for Handler.Path.undo
2013-04-20 02:32:31 -07:00
ahocevar
f4725c48ce
Merge pull request #937 from Turbo87/layer-switcher
...
LayerSwitcher: Simplified checkRedraw() method
2013-04-20 02:20:26 -07:00
ahocevar
6fb10d6e0a
Re-ordering topics in the release notes
2013-04-20 11:08:43 +02:00
ahocevar
44a2b50455
Release notes for GPU, animated zoom and ModifyFeature control
2013-04-20 11:03:46 +02:00
ahocevar
010035e047
New example showing how to switch projections
2013-04-18 16:54:37 +02:00
Tobias Bieniek
ae8a04c601
LayerSwitcher: Simplified checkRedraw() method
2013-04-17 00:00:36 +02:00
ahocevar
111821e86d
Making buttons work
...
Thanks @gregersrygg for testing. With this change, zoom and other buttons
(e.g. editing toolbar) work in touch mode.
2013-04-16 16:44:02 +02:00
ahocevar
9cdc991b8c
Attempt to handle IE >= 10 pointer events
...
Using the same technique as Leaflet, this relays MSPointer events to touch
events. Using the simulator, I can verify that even pinch-zoom works with
this change, but the visual experience is a bit jumpy. Would be great if
people could test this on physical touch devices and see how it looks/feels
there.
2013-04-16 11:18:17 +02:00
ahocevar
80a6185947
Yet another documentation improvement for #932 .
...
Now it should be clear that the map's changelayer event is triggered
whenever the layer's actual visibility (i.e. visible to the user) changes.
2013-04-10 10:21:28 +02:00
ahocevar
92ac9680d8
Another documentation improvement for #932 .
2013-04-10 10:21:28 +02:00
ahocevar
f22937b2ae
Documentation improvement ( fixes #932 )
2013-04-10 10:21:28 +02:00