Tim Schaub
fa740a42a9
Making OpenLayers play well with Bootstrap
...
Bootstrap CSS sets the max-width for images to 100%. This makes it so
OpenLayers maps don't render (the layer container has 0 width, so all images
are given the same). Even if our layer container had a more sensible width
(e.g. 100% of the viewport), we would still have issues with tiles that are
larger than the viewport.
Since the OpenLayers stylesheet may be loaded before or after bootstrap.css,
we should use !important when setting the max-width to none for images we
control.
2012-11-09 15:05:18 -07:00
Peter Robins
8d36a1d7f7
Update Fusion Tables example for latest API version
2012-10-31 10:24:32 +00:00
Tim Schaub
8a8b3076c8
Adding an example that reprojects GeoJSON.
2012-10-19 14:16:13 -04:00
ahocevar
e38ab01752
Fixing image-layer example
2012-10-13 09:26:45 +02:00
ahocevar
cf3ea0c7db
Register application listener after the control's
2012-10-12 13:41:54 +02:00
ahocevar
84a8d8d1f6
Applying VersionedOGC pattern to WMSDescribeLayer format
...
The WMSDescribeLayer format currently differs from other formats that
inhreit from VersionedOGC by having an array instead of an object as return
type. This especially bad since the VersionedOGC superclass sets a version
property on the array. With this change, the WMSDescribeLayer format will
also be compatible with GeoServer's new JSON response type for
DescribeLayer - see
http://sourceforge.net/mailarchive/message.php?msg_id=29912776 .
Another change included here is the removal of the WMSDescribeLayer
format's getVersion hack, which was replaced by a generic fallback to less
generic parsers, e.g. from a v1_1_1 parser to a v1_1 parser if v1_1_1 is
not implemented.
2012-10-02 14:35:05 +02:00
ahocevar
22c5e76b0b
Support for multiple resource urls
...
With this change, createLayer generates url arrays for both KVP and REST
encoding if multiple resource urls are provided. To make this work, the
WMTSCapabilities format got a new resourceUrls property, because
previously only the first resourceUrl for a format was stored.
2012-10-01 15:28:30 +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
b7063b364c
Enhancements to the MouseCoordinates example.
...
Non-functional change.
2012-08-17 23:40:18 +02: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
ec9ab8129e
Adding support for chaining processes.
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
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
Pierre GIRAUD
940c0e8ca2
Adding missing attribution for OSM
2012-07-20 16:18:28 +02:00
Stéphane Brunner
d42f5ee993
Merge pull request #271 from sbrunner/wmts-capabilities
...
Create Layer from WMTS capabilities in rest mode
2012-06-27 01:34:02 -07:00
Frédéric Junod
34750774d7
Merge pull request #547 from fredj/wmts-vienna
...
mobile-wmts-vienna example: requestEncoding already set in defaults
2012-06-25 09:20:10 -07:00
ahocevar
293d173079
Simple example with an OSM map, a marker and a popup.
2012-06-25 17:19:53 +02:00
Stéphane Brunner
81dffce4f4
remove unworking example in wmts-capabilities
2012-06-25 14:58:14 +02:00
Frederic Junod
8058a800ed
mobile-wmts-vienna example: requestEncoding already set in defaults
2012-06-25 14:56:40 +02:00
Frederic Junod
0e78d40da2
Update WMS base layer in strategy-cluster-threshold.html
2012-06-25 14:19:26 +02:00
James
dfb1c1e234
According to
...
http://developer.mapquest.com/web/products/open/map#openlayers (Terms of Use Section)
this is how MapQuest Open Aerial Tiles should be credited.
2012-06-20 12:50:59 +01:00
James
a74fa3d52c
According to http://wiki.openstreetmap.org/wiki/Mapquest#MapQuest-hosted_map_tiles the attributtion
...
for Open Street Map derived Map Quest tiles was wrong. Fixed.
2012-06-20 12:10:36 +01:00
Bart van den Eijnden
a7c202231f
Merge branch '2.12' of github.com:openlayers/openlayers
2012-06-13 07:18:53 +02:00
Éric Lemoine
8208241e55
fix the kml-pointtrack.html example
2012-06-12 22:03:30 +02:00
Éric Lemoine
788d5a645a
move the style.mobile.css file from examples to theme/default
2012-06-07 09:21:44 +02:00
ahocevar
8b2bab9d51
Improvements for Android: no buggy tile transitions, no flicker when tapping.
2012-06-02 22:18:49 +02:00
Marc Jansen
5794502f98
Replace tabs in example with spaces. No functional change.
2012-05-29 22:03:25 +02:00
Marc Jansen
366faf6871
Merge pull request #423 from marcjansen/no-$
...
Remove the aliasing of OpenLayers.Util.getElement to window.$
2012-05-29 12:52:27 -07:00
Marc Jansen
acb9f950df
Use document.getElementById in examples.
...
Previously examples would either use the now deprecated `window.$` or the
non-API-method `OpenLayers.Util.getElement`. This was well caught by @probins
and @elemoine.
2012-05-29 21:47:22 +02:00
Frederic Junod
c696b34a84
Add new maximizeTitle and minimizeTitle options to Control.OverviewMap
2012-05-29 09:04:00 +02:00
ahocevar
88fd8038c8
Simplifying configuration.
2012-05-25 18:37:12 +02:00
ahocevar
440b9fb6d3
Using updated URLs.
2012-05-25 17:30:27 +02:00
Éric Lemoine
2141cb9c0a
Merge branch '2.12'
2012-05-25 15:08:58 +02:00
ahocevar
5879a71f9c
Don't use fade effect on labels.
2012-05-25 13:54:31 +02:00
Frederic Junod
05162a7f9d
Use map.getLonLatFromPixel instead of map.getLonLatFromViewPortPx
...
The former is the API method.
2012-05-24 14:00:25 +02:00
Éric Lemoine
2cd979d34c
use the nightly version of Google Maps API in the examples, and provide some information about Google Maps API versioning in the google-v3 example
2012-05-22 10:07:18 +02:00
tschaub
a612302a11
Demonstrating the use of MapQuest tiles in OL.
2012-05-17 11:06:21 -06:00
ahocevar
e2c9662fa1
Merge pull request #451 from ahocevar/more-title
...
There is no reason to restrict graphicTitle to externalGraphic symbols.
2012-05-15 07:46:33 -07:00
Frederic Junod
8268616ec8
Rename style.graphicTitle to style.title (the former is now deprecated)
2012-05-15 12:49:39 +02:00
Marc Jansen
ea76d24f4c
Merge pull request #450 from fbuchinger/patch-2
...
simplified jquery mobile example
2012-05-14 23:50:49 -07:00
Frederic Junod
6e34b048ff
examples/cartodb-geojson.html: kill long lines, use local OpenLayers.js
2012-05-07 13:06:14 +02:00
Javier de la Torre
81ee9524c7
Added example to retrieve and display data from CartoDB using the SQL API
2012-05-07 12:59:50 +02:00
Éric Lemoine
b61cfdb054
remove the editing toolbar from the highlight-feature.html, it does not make sense in this example and it prevents selection from working when activating navigation again
2012-05-04 00:12:26 +02:00
fbuchinger
678bf86337
simplyfied jquery mobile example
2012-05-03 17:47:54 +03:00
Éric Lemoine
743dc9a738
Merge branch '2.12'
2012-05-02 17:11:37 +02:00
Stéphane Brunner
da67953c61
add a REST example in wmts-capabilities
2012-04-27 18:22:37 +02:00
Frederic Junod
5f1651a30f
Add missing hover option to the SelectFeature control.
...
Thanks Arnie Shore.
2012-04-25 10:34:40 +02:00