ahocevar
475cd7cd60
Fixing test (backBufferLonLat should not be OpenLayers.Bounds).
...
Thanks @rdewit for the IE7 test report - this fixes one of the reported issues.
2012-08-21 13:57:11 +02:00
ahocevar
b2210d00a9
Removing no longer needed code.
...
Thanks @elemoine for catching the IE6 reflow in Tile/Image.js.
2012-08-21 13:57:11 +02:00
ahocevar
f0ad48597f
No more percentage based positioning.
...
Client zoom now supports both over- and undersampling.
2012-08-21 13:57:11 +02:00
ahocevar
405cebd482
Merge pull request #639 from ahocevar/grid-align
...
When using a buffer, the grid lacks rows/columns at the top/left. r=@bartvde
2012-08-21 04:47:10 -07:00
ahocevar
26d4fe3ce8
Making row and column size consistent, as suggested by @bartvde.
2012-08-21 13:37:48 +02:00
ahocevar
0f58868830
When using a buffer, the grid lacks rows/columns at the top/left.
...
This is because the threshold used for deciding when a column or row is shifted is too far to the bottom right. A tiny fix, but effective. A new test makes sure that we don't shift columns more than necessary when the layer is dragged.
2012-08-20 18:52:17 +02:00
ahocevar
87e7cfe29c
Merge pull request #632 from ahocevar/wps-client
...
WPS Client. r=@bartvde,@tschaub
2012-08-18 10:01:01 -07:00
ahocevar
e04d7cd627
Addressing final review comments.
2012-08-18 18:56:36 +02:00
Marc Jansen
470dde0e38
Documentation enhancements. No functional change.
2012-08-17 23:41:19 +02:00
Marc Jansen
b7063b364c
Enhancements to the MouseCoordinates example.
...
Non-functional change.
2012-08-17 23:40:18 +02:00
Marc Jansen
df19317c95
Merge branch 'master' of https://github.com/openlayers/openlayers
...
Conflicts:
tests/list-tests.html
2012-08-17 22:46:06 +02:00
Bart van den Eijnden
f6adcd2651
Merge pull request #637 from bartvde/resizecleanup
...
cleanup and always use window resize as suggested by @tonio (r=@tonio)
2012-08-17 03:50:47 -07:00
Bart van den Eijnden
7b4cb8e3f5
cleanup and always use window resize as suggested by @tonio
2012-08-17 11:36:03 +02:00
Bart van den Eijnden
5e4aea58f1
Merge pull request #636 from bartvde/autoresize
...
introduce new property on the Map called autoUpdateSize (r=@ahocevar)
2012-08-17 01:22:23 -07:00
Bart van den Eijnden
3b9ce4ca2d
introduce new property on the Map called autoUpdateSize which lets applications take control of window resizing / device orientation changes if they want to
2012-08-17 10:13:04 +02:00
Bart van den Eijnden
2843a18602
Revert "fix issue with orientation changes on mobile devices (tested on Motorola Xoom 2 with Android 3.2.2 in the stock browser)"
...
This reverts commit 39a6d7d8ef .
2012-08-16 16:35:21 +02:00
Bart van den Eijnden
e4e06a877f
Merge pull request #635 from bartvde/resize
...
fix issue with orientation changes on mobile devices (r=@ahocevar and thanks to @ahocevar for coming up with this idea in the first place)
2012-08-16 05:28:07 -07:00
Bart van den Eijnden
39a6d7d8ef
fix issue with orientation changes on mobile devices (tested on Motorola Xoom 2 with Android 3.2.2 in the stock browser)
2012-08-16 14:21:36 +02:00
tschaub
5cf260f38a
Add missing requires ( closes #633 ).
2012-08-14 11:01:58 -06:00
ahocevar
88572303fb
Addressing @tschaub's review comment.
2012-08-14 13:31:41 +02:00
ahocevar
5fff368a2d
Addressing review suggestions and fixing asynchronous function calls.
...
This commit addresses @bartvde's review comments, adds more documentation, and fixes asynchronous function calls. Previously, when creating multiple processes with the same identifier, the describe callback would only have been called for the first process. This was fixed to move DescribeProcess handling from WPSProcess to WPSClient.
2012-08-14 13:17:07 +02:00
ahocevar
006d98151f
Use the correct name of the result, not just hard-coded 'result'.
2012-08-13 13:29:34 +02:00
ahocevar
94f3ab393f
Giving the test code more time to execute.
2012-08-12 22:08:43 +02:00
ahocevar
4e3f3e2080
Adding dependencies.
2012-08-12 21:39:15 +02:00
ahocevar
96db01006c
Making Firefox happy.
2012-08-11 19:32:17 +02:00
ahocevar
e2acbc56d0
More docs and unit tests.
2012-08-11 19:32:17 +02:00
ahocevar
ebc71b492e
Making sure that the process description is not loaded.
2012-08-11 19:32:17 +02:00
ahocevar
ec9ab8129e
Adding support for chaining processes.
2012-08-11 19:32:17 +02:00
ahocevar
c64621f510
Adding unit tests.
2012-08-11 19:32:17 +02:00
ahocevar
b61120d3b5
Cache of DescribeProcess responses on the client.
2012-08-11 19:32:17 +02:00
ahocevar
9bc7bb8115
Using proxy and demo server.
2012-08-11 19:32:17 +02:00
ahocevar
0108250ed9
WPSClient and WPSProcess for convenient WPS interaction.
2012-08-11 19:32:17 +02:00
tschaub
970448effc
Tests for response property on loadend event.
...
This confirms that the loadend event includes a response property when it results from a call to the strategy merge method (see #624 ).
2012-08-08 11:41:51 -06:00
tschaub
7e326f97e2
Doc fix for merge method.
2012-08-08 11:41:33 -06:00
tschaub
4ae9f6878d
Making events easier to test.
...
This should make it more straightforward to test the new event properties being sent with loadend on BBOX and Fixed strategies (see #624 ).
2012-08-08 11:23:02 -06:00
ahocevar
49227967bc
Merge pull request #624 from milkypostman/master
...
return response object on "loadend" event for Fixed strategy. Also closes #85 .
2012-08-08 07:51:56 -07:00
Donald Curtis
2696494443
return response object on "loadend" event for Fixed and BBOX strategies
2012-08-08 09:46:58 -05:00
Bart van den Eijnden
bab1858bfc
slightly modify the wfs-states example to show how to switch between a WMS and a vector layer at a certain scale (non-functional change)
2012-08-08 09:20:14 +02:00
Stéphane Brunner
65cacaa756
Merge pull request #614 from sbrunner/wmts-fix
...
correct units in WMTS capabilities
2012-08-03 02:35:26 -07:00
ahocevar
159ee7c7b4
Merge pull request #612 from ahocevar/612
...
Touch events do not trigger the default action in attribution links. r=@marcjansen
2012-08-01 04:16:38 -07:00
ahocevar
aef5517bfa
Adding unit tests.
2012-08-01 13:15:59 +02:00
ahocevar
98569203a6
Check whether an event target should be considered for handling.
2012-08-01 10:20:25 +02:00
Stéphane Brunner
9d31c57e2a
correct units in WMTS capabilities
2012-07-30 23:17:11 +02:00
Pierre GIRAUD
940c0e8ca2
Adding missing attribution for OSM
2012-07-20 16:18:28 +02:00
Stéphane Brunner
584749b524
Merge pull request #601 from temporaryaccount/temporaryopenlayers
...
Prevent KeyboardDefaults.js from triggering keyboard events when user is...
2012-07-20 04:37:25 -07:00
ahocevar
7249510553
Using the safe unicode representation of the minus sign.
...
No functional change; see #588 .
2012-07-20 09:41:42 +02:00
ahocevar
c786952219
Fixing tests.
2012-07-20 09:19:20 +02:00
temporaryaccount
950904f59a
Prevent KeyboardDefaults.js from triggering keyboard events when user is typing into the form elements
2012-07-19 18:08:30 +04:00
Pierre GIRAUD
99553d0ae5
Fixing doc. No functional change.
2012-07-17 16:15:03 +03:00
Stéphane Brunner
f9cf3a0c95
Merge pull request #588 from sbrunner/minus
...
use minus sign
2012-07-13 02:58:09 -07:00