ahocevar
b57540ecfc
Merge pull request #813 from Turbo87/encoded-polyline
...
Format: Added EncodedPolyline class. Merging this as a first step towards
support for alternative geometry encodings. See #813 for TBDs.
2012-12-28 11:55:12 -08:00
Tim Schaub
75423660d8
Merge pull request #815 from Turbo87/wkt
...
Small Format.WKT code cleanup
2012-12-28 11:38:01 -08:00
Tobias Bieniek
06bd07ff8d
EncodedPolyline: Added write() method
2012-12-28 20:24:57 +01:00
Tobias Bieniek
69d759635f
WKT: Removed unused variables from write() method
2012-12-28 19:30:50 +01:00
Tobias Bieniek
60a02e343b
WKT: Added APIMethod keywords to documentation
2012-12-28 19:30:47 +01:00
Tobias Bieniek
06409da72e
EncodedPolyline: Added APIMethod keywords to documentation
2012-12-28 19:14:30 +01:00
Tobias Bieniek
510d42b12f
EncodedPolyline: Added encode() method
...
The write() method will follow in the next commit.
2012-12-28 01:31:24 +01:00
Tobias Bieniek
8651e05e75
EncodedPolyline: Allow setting geometryType to "point
2012-12-27 23:19:44 +01:00
Tobias Bieniek
c118d9884d
EncodedPolyline: Extracted universal decode(encoded, dims) method
2012-12-27 23:09:08 +01:00
Tobias Bieniek
2c5d4c75d4
EncodedPolyline: Merged duplicate code in read() method
...
This patch also prepares the code for making it possible to read encoded
strings with multi-dimensional points.
2012-12-27 23:09:08 +01:00
Tobias Bieniek
aedafc0336
EncodedPolyline: Added geometryType attribute
...
This makes it possible to read polygons or multipoints too. Since the
encoded format is just a list of points the reader needs to be told what
Feature to create from the encoded list.
The example code is edited to reflect that API extension.
2012-12-27 23:09:08 +01:00
Tobias Bieniek
88a3091a90
examples: Added example for the EncodedPolyline Format class
2012-12-27 19:49:49 +01:00
Tobias Bieniek
63a9567858
Format: Added EncodedPolyline class
...
This class is able to convert an encoded polyline string into a LineString embedded in a Vector Feature.
See https://developers.google.com/maps/documentation/utilities/polylinealgorithm for more information.
2012-12-26 18:25:04 +01:00
ahocevar
4b2e80fa36
Merge pull request #805 from mosesonline/unselectAllFix
...
unselectAll on removing layer fix
2012-12-24 06:17:04 -08:00
ahocevar
07e039b566
Merge pull request #803 from ahocevar/tween-framerate
...
Tween: skip frames when minimum frame rate is not reached. r=@bartvde
2012-12-24 06:11:11 -08:00
Bart van den Eijnden
2dfc23e217
Merge pull request #806 from eykamp/master
...
Identify and fix bug with WFS 1.1.0 (r=@bartvde,@ahocevar)
2012-12-24 05:35:14 -08:00
ahocevar
9759902dac
Fixing API; addressing @mpriour's doc comment
...
Previously, minFrameRate could not be set as option with the start method.
The tests failed to catch this flaw. Now both the start method and the
tests are fixed.
2012-12-21 21:24:04 +01:00
ahocevar
810d9ea95d
Fixing line breaks.
2012-12-21 13:10:26 +01:00
ahocevar
c6aa104462
Merge pull request #810 from ahocevar/transitionend
...
Use transitionend listeners where available. r=@bartvde
2012-12-21 04:08:29 -08:00
ahocevar
fcd8586883
Using an array for the transitionend event names
2012-12-21 13:07:36 +01:00
ahocevar
43c646b6da
Use new Opera event name as well
...
As pointed out by @bartvde, according to
http://stackoverflow.com/questions/5819912/webkit-transition-end-in-mozilla-and-opera ,
Opera uses otransitionend or oTransitionEnd, depending on the version.
2012-12-21 13:01:15 +01:00
ahocevar
dd244e6988
Use transitionend listeners where available
...
In addition to relying on removeBackBufferDelay, we can remove the
backbuffer earlier without flicker in an ontransitionend listener on the
last loaded tile.
2012-12-21 12:33:28 +01:00
ahocevar
86db8fabc6
Merge pull request #807 from ahocevar/units
...
WMTS Example misaligning with OSM base layer. r=@sbrunner
2012-12-20 14:35:57 -08:00
ahocevar
fc64b2c5f8
Fixing tests properly, as suggested by @sbrunner
2012-12-20 16:30:58 +01:00
mosesonline
ef028b1e91
Update lib/OpenLayers/Control/SelectFeature.js
...
indentation fixed and added comment to explain null case
2012-12-20 08:55:21 +01:00
ahocevar
f5d7f794c9
Some tweaks to make tests pass again
2012-12-19 23:13:11 +01:00
ahocevar
893966dfae
'm' and 'Meters' in OpenLayers.INCHES_PER_UNIT are not the same
...
OpenLayers.INCHES_PER_UNIT.m should equal
OpenLayers.INCHES_PER_UNIT.Meters, just like OpenLayers.INCHES_PER_UNIT.km
should equal OpenLayers.Inches_PER_UNIT.Kilometers. This confusion probably
comes from mixing International inches with US Survey inches when compiling
the unit conversion list (1 meter is 39.37007874 International inches, but
39.37 US Survey inches. It may not be obvious, but 'inches'/'Inch' in
OpenLayers means US Survey inch, and 'IInch' means International inch).
This change also fixes offsets caused by incorrect resolution calculations in
OpenLayers.Format.WMTSCapabilities.
2012-12-19 22:23:45 +01:00
Christopher Eykamp
2a21d61400
Change errorProperty to fix bug; now passes all tests
2012-12-19 11:19:56 +01:00
Christopher Eykamp
2c6b8aefcf
Improve added error tests
2012-12-19 10:49:16 +01:00
Christopher Eykamp
a2c161be08
Revert error message change
2012-12-19 10:45:25 +01:00
Christopher Eykamp
428335fd0d
Even more sensible error message
2012-12-19 10:32:19 +01:00
Christopher Eykamp
7790a0a9b6
More sensible error message
2012-12-19 10:31:42 +01:00
mosesonline
0263b2b5e1
[Change] renamed test and added print of error
2012-12-18 09:47:33 +01:00
mosesonline
7aed43185b
[BugFix] Added tests for handle destroyed layer in SelectFeature.
2012-12-18 09:43:22 +01:00
mosesonline
0cdb3aeb52
[BugFix] Fix selectFeatures is null exception when layer is destroyed. Since you can listen only to preremovelayer to handle removing layer with SelectFeature. But preremovelayer is triggered after selectFeatures is set to null.
2012-12-18 09:34:48 +01:00
Pierre GIRAUD
b404ca0a7a
Merge pull request #802 from pgiraud/pinch_preserve_center_
...
Pinch preserve center
2012-12-18 00:20:18 -08:00
Christopher Eykamp
2478e2311f
Update number of tests, add comment
2012-12-17 18:33:19 +01:00
Christopher Eykamp
f4be1d138c
Add test that demonstrates bug in WFS 1.1.0 parsing
2012-12-17 18:08:23 +01:00
ahocevar
f0f1ea0867
Skip frames when minimum frame rate is not reached
...
The new minFrameRate option is used to make sure that an animation does not
run longer than the time calculated from that frame rate. Time is made up
by skipping frames, i.e. skipping execution of the eachStep callback.
2012-12-17 14:54:08 +01:00
Pierre GIRAUD
c9fa5aabad
Merge pull request #801 from pgiraud/map_movestart_zoomchanged
...
Send zoomChanged value when triggering movestart event
2012-12-17 04:56:32 -08:00
Pierre GIRAUD
6c21c2043f
Completing the doc strings
2012-12-17 13:55:32 +01:00
Pierre GIRAUD
d0c85850f5
More detailed documentation
2012-12-17 13:43:16 +01:00
Pierre GIRAUD
06597f1897
Missing var
2012-12-17 13:23:10 +01:00
Pierre GIRAUD
69580cd698
Don't change the example
2012-12-17 12:56:09 +01:00
Pierre GIRAUD
00c3ca47c0
Adding test for new preserveCenter option
2012-12-17 11:56:33 +01:00
Pierre GIRAUD
0a131f380a
Adding preserveCenter config option
2012-12-17 11:56:18 +01:00
Pierre GIRAUD
ee5796cb78
Send zoomChanged value when triggering movestart event
2012-12-17 11:45:10 +01:00
ahocevar
257b249b9d
Updating notes after 84cf468
2012-12-14 09:35:15 +01:00
ahocevar
84cf468a22
Use http protocol for non-http (i.e. file) URIs (see #700 )
2012-12-14 09:30:13 +01:00
ahocevar
083fcca882
Fixing tests (see #700 )
2012-12-14 09:07:26 +01:00