Florent gravin
0646056751
Overrides schemaLocation in subclasses
2014-10-03 09:45:24 +02:00
Florent gravin
678c66f50c
Move GML subclasses to ol.format namespace
...
to avoid issue with ol.format.GML alias
ol.format.GMLBase
ol.format.GML2
ol.format.GML3
2014-10-03 09:44:56 +02:00
Florent gravin
607543e4e7
Create an alias ol.format.GML to ol.format.GML3
...
for backward compatibility
2014-10-03 09:44:47 +02:00
Florent gravin
d3ac01445e
Use by default instance of ol.format.GML.v3 in WFS format
2014-10-03 09:44:06 +02:00
Florent gravin
07d6b83154
Redefine some PARSERS_ that are different in v2 and v3
2014-10-03 09:44:06 +02:00
Florent gravin
8182396454
Make class members public or protected
...
to be accessed from subclasses or static objects
2014-10-03 09:43:05 +02:00
Florent gravin
9324580c87
add format for GML v3 version
...
all writing methods & objects are defined in v3, as writing for v2 is not done yet
2014-10-03 09:43:04 +02:00
Florent gravin
d8114012bb
Remove from GML base all objects and methods that should belong to v3
2014-10-03 09:42:51 +02:00
Florent gravin
c9171b8682
Pass options from v2 to its parent constructor
2014-10-03 09:42:51 +02:00
Florent gravin
f8e8653480
Add gmlFormat as option for WFS format
2014-10-03 09:42:45 +02:00
Florent gravin
13f10f6a98
Change GML method call signature from WFS format
2014-10-03 09:42:22 +02:00
Florent gravin
074330707c
Call dedicated version format methods with 'this.constructor' object
2014-10-03 09:42:17 +02:00
Florent gravin
8efab3d4be
Make protected some shared methods or objects
2014-10-03 09:42:13 +02:00
Florent gravin
8b38367e2b
Add subclass for version ol.format.GML.v2
2014-10-03 09:42:09 +02:00
Florent gravin
b8e5ffaf31
Use current scope on remote methods call if arg opt_this is undefined
2014-10-03 09:42:09 +02:00
Florent gravin
4aad872d71
Send ol.format.GML instance reference to ol.xml static methods
2014-10-03 09:42:09 +02:00
Florent gravin
5884f7343a
Call method in ol.format.GML.prototype from ol.format.GML static objects
2014-10-03 09:42:09 +02:00
Florent gravin
c49891dcce
Call inner methods from 'this' object
2014-10-03 09:42:08 +02:00
Florent gravin
42b58cddbd
Move all method declarations into ol.format.GML.prototype
2014-10-03 09:42:08 +02:00
Florent gravin
f5e5419cb6
Move gmlformat.js to gml/base.js
2014-10-03 09:41:59 +02:00
Erik Timmers
b321501476
Fix namespacing convention
2014-10-01 17:57:53 +02:00
Frederic Junod
a3b3e044f5
Remove unused distinctFeatures object in ol.interaction.Modify#handlePointerDown
...
The object is filled but never used.
2014-09-30 15:08:15 +02:00
Éric Lemoine
ddbc1d260c
Mark ol.style.Image#getImage with @api
2014-09-30 12:26:07 +02:00
Éric Lemoine
af7944ef42
Mark ol.style.Image with @api
...
This is to be able to do `imageStyle instanceof ol.style.Image` in applications.
2014-09-30 12:26:06 +02:00
Éric Lemoine
4c0bfd8905
More restrictive type for ol.style.Icon#getImage
2014-09-30 12:26:06 +02:00
Éric Lemoine
c7ac9502bd
More restrictive type for ol.style.Circle#getImage
2014-09-30 12:26:06 +02:00
Éric Lemoine
eb4e72c754
Handle activation/deactivation in draw interaction
2014-09-30 10:00:52 +02:00
Guillaume Beraudo
67f4e9c817
Export constructors of ol.source.Source children
...
Necessary addition to https://github.com/openlayers/ol3/pull/2749 .
2014-09-30 09:33:55 +02:00
Frédéric Junod
c0fc220298
Merge pull request #2772 from fredj/changefeature
...
Rename updatefeature event to changefeature
2014-09-30 09:27:58 +02:00
Éric Lemoine
0e3b08d493
Merge pull request #2766 from elemoine/interaction-object
...
Make interaction "active" an ol.Object property
2014-09-30 09:04:28 +02:00
Frederic Junod
cf8738f9f6
Rename updatefeature event to changefeature
2014-09-30 09:02:53 +02:00
xamgreen
704d53e589
getProjektion() instead of getprojektion()
...
Just a little error that my confuse some people.
2014-09-29 20:01:47 +02:00
Éric Lemoine
dede4f379f
Make interaction "active" an ol.Object property
2014-09-29 17:31:58 +02:00
Frederic Junod
ced15e27c1
Remove rtree example
...
Fixes #2732
2014-09-29 13:29:52 +02:00
Frederic Junod
98ceee5d28
Fix documentation typo
2014-09-29 09:05:22 +02:00
Frederic Junod
aaeb2b6938
Remove unnecessary parentheses
2014-09-29 09:05:22 +02:00
Frederic Junod
6e3a5ca7ca
Remove unnecessary newlines
2014-09-29 09:05:22 +02:00
Tim Schaub
2ad27044a6
Correctly generate child tile ranges for XYZ
...
Instead of incrementing and then doubling, calculate the child tile range by doubling and then incrementing.
With this change, tile coord [0, 0, 0] has the four following children:
[1, 0, 0] [1, 1, 0]
[1, 0, 1] [1, 1, 1]
Without this change, tile coord [0, 0, 0] had the nine following children:
[1, 0, 0] [1, 1, 0] [1, 2, 0]
[1, 0, 1] [1, 1, 1] [1, 2, 1]
[1, 0, 2] [1, 1, 2] [1, 2, 2]
2014-09-28 12:23:12 -06:00
Éric Lemoine
b0b62c6ac3
Merge pull request #2734 from elemoine/bingmaps
...
Add maxZoom option to BingMaps
2014-09-27 22:34:06 +02:00
Éric Lemoine
00800785d4
Merge pull request #2752 from elemoine/loadfeatures
...
Call loadFeatures from ol.source.ImageVector
2014-09-25 15:00:52 +02:00
Frédéric Junod
5f51fbc93d
Merge pull request #2658 from oterral/fix_getcap
...
Set inherited values when parsing a GetCapabilities
2014-09-25 13:51:40 +02:00
Frédéric Junod
884fb5736c
Merge pull request #2750 from fredj/export-layer-base
...
Export ol.layer.Base
2014-09-25 10:58:04 +02:00
Frederic Junod
48b9475bb6
Export ol.layer.Base
...
See #2615
2014-09-25 10:40:03 +02:00
Frederic Junod
4e5120ff71
Export ol.source.Source
...
Fixes #2615
2014-09-25 10:33:31 +02:00
Frédéric Junod
aafe50c30e
Merge pull request #2742 from fredj/updatefeature
...
Dispatch an 'updatefeature' from the vector source
2014-09-25 09:20:15 +02:00
Bart van den Eijnden
0145c4fb5f
The getGeometry function of ol.interaction.DragBox always returns ol.geom.Polygon
2014-09-24 11:57:36 +02:00
Frederic Junod
1dcde66839
Fix ol.Feature 'change' event documentation
...
Setting the id also dispatch a `change` event
2014-09-23 17:40:46 +02:00
Frederic Junod
79b8ef3a53
Dispatch an 'updatefeature' from the vector source
2014-09-23 16:19:00 +02:00
Bart van den Eijnden
b8d8acd3fd
Merge pull request #2741 from bartvde/issue-2741
...
issue with reading scientific notation coordinates in ol.format.GML (r=@fredj)
2014-09-23 16:17:36 +02:00
Bart van den Eijnden
2e18f077c8
Correctly parse GML coordinates with capital E in scientific notation
2014-09-23 15:35:12 +02:00