Skip to content

Commit 0f41656

Browse files
committed
Remove mapquery code, tests and demos (breaks Mapbender <3.0.8); also remove bundled (outdated) jquery and jquery ui versions (breaks Mapbender <3)
1 parent 263c72c commit 0f41656

File tree

228 files changed

+5
-75339
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

228 files changed

+5
-75339
lines changed

README.md

Lines changed: 1 addition & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1 @@
1-
MapQuery
2-
=========
3-
4-
More information is available at http://github.com/mapquery
5-
6-
The current documentation are the examples in the demo directory. Feel free to write something up for this README :)
7-
8-
In order to get the demos work, you need to get all dependencies. Run the getdeps.sh in the lib directory. Take care, that the getdeps.sh have enough permissions that it can run.
9-
10-
Known issues
11-
------------
12-
13-
### Demos don't work
14-
15-
1. Have you got the dependencies (see above)
16-
2. If you use Chrome/Chromium, you either need to run it behind a web server (so that the URLs are http:// and not file://) or start it with the `-allow-file-access-from-files` flag. See http://code.google.com/p/chromium/issues/detail?id=40787 for more information.
17-
18-
19-
Development Guidlines
20-
---------------------
21-
22-
If you want to create a new widget for MapQuery, here are some notes:
23-
24-
- Don't indent after the (function($) { })(jQuery) closure:
25-
26-
```javascript
27-
(function($) {
28-
$.widget("mapQuery.mqLayerControl", {
29-
_create: ...
30-
});
31-
})(jQuery);
32-
```
33-
34-
- Name your widget in the constructor mapQuery.mq<anameyoulike>:
35-
36-
$.widget("mapQuery.mqLayerControl", {...
37-
38-
- Use jQuery-tmpl for templating
39-
40-
- Use jQuery UI classes for styling
41-
42-
- If you need `this` in an inner function, name the corresponding variable `self`
43-
44-
- Indentation is 4 spaces
45-
46-
- For CSS clases use a dash (-) and not an underscore (_) to separate parts
47-
48-
49-
Data
50-
----
51-
52-
The bundled tiles were generated from the Natural Earth dataset.
53-
http://www.naturalearthdata.com/downloads/10m-raster-data/10m-natural-earth-1/
54-
55-
56-
License
57-
-------
58-
59-
MapQuery is licensed under the MIT License.
1+
Legacy delivery vehicle for OpenLayers 2 into Mapbender.

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
"php": ">=5.3.0",
1414
"robloach/component-installer": "0.2.*"
1515
},
16+
"conflict": {
17+
"mapbender/mapbender": "<3.0.8",
18+
},
1619
"extra": {
1720
"component": {
1821
"files": [

demo/basic.html

Lines changed: 0 additions & 24 deletions
This file was deleted.

demo/bing.html

Lines changed: 0 additions & 28 deletions
This file was deleted.

demo/data/poly.json

Lines changed: 0 additions & 34 deletions
This file was deleted.

demo/data/poly2.json

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)