Tim Schaub
060edb2070
Merge branch 'vector' of github.com:openlayers/ol3 into vector
...
Conflicts:
src/ol/style/shape.js
2013-03-06 02:28:33 +01:00
Tim Schaub
ac10bb6ca5
Enforce that either stroke or fill is provided
2013-03-06 02:20:11 +01:00
Tim Schaub
c0c8faaf9f
Allow literal from symbolizer without feature
2013-03-06 02:20:11 +01:00
ahocevar
95f3fe535a
No projection configuration needed on the layer
2013-03-06 02:20:11 +01:00
Éric Lemoine
5d99ead2b7
View2D NoConstraint methods renamed
2013-03-06 02:20:10 +01:00
Tom Payne
ba78812796
Improve comment parsing when checking for requires
2013-03-06 02:20:10 +01:00
Éric Lemoine
a0ba80bcbb
Check the examples against whitespace build first
...
This is to produce stack traces that are easier to understand when an example fails to load.
2013-03-06 02:20:10 +01:00
Bruno Binet
382022bdb5
Add defaultNamespaceURI and errorProperty properties for WMTS.
...
Thanks @bartvde.
2013-03-06 02:20:10 +01:00
Éric Lemoine
221c8077e0
Make hostexamples target more robust
2013-03-06 02:20:10 +01:00
ahocevar
2ee19f699a
Moving VERSION into params
2013-03-06 02:20:10 +01:00
ahocevar
c1f3a6cc54
WMS GetMap request parameters shall be params
...
To avoid surprises, we configure everything that is a WMS GetMap
request parameter in the params object, and not as direct
configuration option. This affects the VERSION and TRANSPARENT
params.
2013-03-06 02:20:09 +01:00
ahocevar
a912d48b59
Do not use tiledWMSOptions in closure function
...
See #269 .
2013-03-06 02:20:09 +01:00
Éric Lemoine
5644c27d9e
Animate double click/tap zoom
2013-03-06 02:20:09 +01:00
Éric Lemoine
066a81a88a
Animate zoom after pinch
2013-03-06 02:20:09 +01:00
Éric Lemoine
a4c47edd9d
2DView refactoring
...
This refactoring makes animating zoom, as opposed to zoomByDelta, possible.
2013-03-06 02:20:09 +01:00
Éric Lemoine
b9a286fb7a
Animate rotation when releasing mouse or fingers
2013-03-06 02:20:08 +01:00
Éric Lemoine
33eb13d73b
Make animating rotation possible
2013-03-06 02:20:08 +01:00
Éric Lemoine
de8db176ab
Do not apply rotation constraint while rotating
...
This is on par to what the TouchRotate interaction does.
2013-03-06 02:20:08 +01:00
Éric Lemoine
f20cf83c94
Add a snapToZero rotation constraint
2013-03-06 02:20:08 +01:00
Tom Payne
83225916c1
Add Stamen example
2013-03-06 02:20:07 +01:00
Tom Payne
78780fa095
Correct Stamen source
2013-03-06 02:20:07 +01:00
Éric Lemoine
cae2340343
Make TouchRotate interaction use rotateNoConstraint
2013-03-06 02:20:07 +01:00
Éric Lemoine
303520a5e0
Add a rotateNoConstraint View2D method
2013-03-06 02:20:06 +01:00
Éric Lemoine
2c551b0445
Change View2D function names
...
Also make the TouchZoom interaction no longer use a private View2D function.
2013-03-06 02:20:06 +01:00
Éric Lemoine
ca31cf590c
Debounce mousewheel zoom events
2013-03-06 02:20:06 +01:00
Éric Lemoine
673ea079f8
MouseWheelZoom interaction animates zoom
2013-03-06 02:20:06 +01:00
Éric Lemoine
be5967a948
View2D zoom may animate pan
2013-03-06 02:20:06 +01:00
Éric Lemoine
29d3878ea3
zoomFactor defaults to 2
2013-03-06 02:20:06 +01:00
ahocevar
ab19d255c7
Rendering icons from external graphic urls
2013-03-06 01:57:08 +01:00
Tim Schaub
4f2523fcf2
Vector related exports
2013-03-05 18:25:07 +01:00
Tim Schaub
9a0e7a96fe
Moving the feature management to the layer
...
The source will be responsible for fetching vector data.
2013-03-05 18:25:07 +01:00
Tim Schaub
e1c3faa53e
Vector related exports
2013-03-05 18:13:10 +01:00
ahocevar
d8b6d17105
Merge branch 'master' of github.com:openlayers/ol3 into vector
2013-03-05 15:48:57 +01:00
ahocevar
df4f2c4c0a
No projection configuration needed on the layer
2013-03-05 15:25:47 +01:00
Bart van den Eijnden
aa4c4ddc48
Merge branch 'master' of github.com:openlayers/ol3 into vector
2013-03-05 14:20:32 +01:00
Éric Lemoine
98f9f44877
Merge pull request #261 from elemoine/zoomfactor
...
Change default zoom delta and animate mousewheel zoom
2013-03-05 03:52:38 -08:00
Éric Lemoine
b884f2f25d
View2D NoConstraint methods renamed
2013-03-05 12:51:03 +01:00
Tim Schaub
12bee3178e
Moving the feature management to the layer
...
The source will be responsible for fetching vector data.
2013-03-05 12:46:55 +01:00
Tom Payne
3b29ec610b
Merge pull request #280 from twpayne/check-requires-in-comments-fixes
...
Improve comment parsing when checking for requires
2013-03-05 03:05:52 -08:00
Tom Payne
254a96e036
Improve comment parsing when checking for requires
2013-03-05 11:51:53 +01:00
Tim Schaub
a968a5ca66
The shared vertices structure now works with integer arrays only
...
Previously, a lookup object containing start indexes was also used. This allowed us to remove arrays of vertices and properly update the start indexes for remaining coordinate values. In order to provide callers with stable identifiers and to work with arrays of integers alone, we cannot support a remove method. I think this is worth revisiting. Even if the array length cannot be changed in WebGL, we don't need to also impose the restriction outside. Instead, the WebGL renderer could be notified when array sizes change and update itself accordingly. I think there is more value in providing geometries with stable identifiers.
This common structure is used to store vertices for all geometry types. A slight optimization could be made by creating yet another structure to store point vertices - since these don't need to have a counts array (always 1). Creating a new structure would mean saving memory at the expense of more lib code to transport. The coordinate value lookups are not negatively impacted by using the same structure for points and higher order geometries. Since the first change above goes against my instincts, I'm not making this second change (to add another structure for shared point vertices).
2013-03-05 11:47:42 +01:00
Éric Lemoine
403666d875
Merge pull request #279 from elemoine/check-examples
...
Check the examples against whitespace build first
2013-03-05 02:39:58 -08:00
Éric Lemoine
82c2fc19a1
Check the examples against whitespace build first
...
This is to produce stack traces that are easier to understand when an example fails to load.
2013-03-05 11:37:30 +01:00
Éric Lemoine
9a64435a65
Merge pull request #275 from elemoine/275
...
Files in gh-pages examples
2013-03-05 02:31:39 -08:00
Bruno Binet
ade4213dd8
Merge pull request #277 from bbinet/fix-wmts-parser
...
Add defaultNamespaceURI and errorProperty properties for WMTS.
2013-03-05 02:29:23 -08:00
Bruno Binet
8b3cfda963
Add defaultNamespaceURI and errorProperty properties for WMTS.
...
Thanks @bartvde.
2013-03-05 11:26:46 +01:00
Éric Lemoine
aa9275b57f
Make hostexamples target more robust
2013-03-05 11:26:22 +01:00
Tom Payne
68919b5ee3
Merge pull request #267 from twpayne/stamen-fixes
...
Stamen fixes
2013-03-05 02:14:21 -08:00
ahocevar
8fd25749c0
Merge pull request #276 from ahocevar/wms-params
...
WMS GetMap request parameters shall be params. r=@elemoine
2013-03-05 02:13:37 -08:00
ahocevar
19f8692672
Moving VERSION into params
2013-03-05 11:11:41 +01:00