2010-01-18 Miguel de Dios <miguel.dedios@artica.es>

* include/javascript/OpenLayers/*: include the OpenLayers library into the
	Pandora file system for GIS use.
	


git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2277 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2010-01-18 12:16:43 +00:00
parent 28425996bd
commit b9d2c7a8f8
7 changed files with 2312 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2010-01-18 Miguel de Dios <miguel.dedios@artica.es>
* include/javascript/OpenLayers/*: include the OpenLayers library into the
Pandora file system for GIS use.
2010-01-15 Pablo de la Concepción <pablo.concepcion@artica.es>
* pandoradb.sql, extras/pandoradb_migrate_v3.0_to_v3.1.sql: Added column

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,37 @@
This license applies to all code and content in the 'branches', 'trunk', and
'project' directories of the Openlayers code repository at svn.openlayers.org,
and applies to all release of OpenLayers later than 2.5.
Copyright (c) 2005-2008 MetaCarta, Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted (subject to the limitations in the
disclaimer below) provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the
distribution.
* Neither the name of MetaCarta, Inc. nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE
GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@ -0,0 +1,49 @@
OpenLayers 2.8:
r9043
Released 06/22/09
http://trac.openlayers.org/wiki/Release/2.8/Notes
OpenLayers 2.7:
r8063
Released 09/29/08
http://trac.openlayers.org/wiki/Release/2.7/Notes
OpenLayers 2.6:
r6945
Released 04/15/08
http://trac.openlayers.org/wiki/Release/2.6/Notes
OpenLayers 2.5:
r4899
Released 10/09/07
http://trac.openlayers.org/wiki/Release/2.5/Notes
OpenLayers 2.4:
r3198
Released 05/29/07
http://trac.openlayers.org/wiki/Release/2.4/Notes
OpenLayers 2.3:
r2255
Released 02/21/07
http://trac.openlayers.org/wiki/Release/2.3/Notes
OpenLayers 2.2:
r1866
Released 11/15/06
http://trac.openlayers.org/wiki/Release/2.2/Notes
OpenLayers 2.1:
r1521
Released 10/02/06
http://trac.openlayers.org/wiki/Release/2.1/Notes
OpenLayers 2.0:
r1368
Released 08/25/06
http://trac.openlayers.org/wiki/Release/2.0/Notes
OpenLayers 1.0
r787
Released 06/27/06
Initial release.

View File

@ -0,0 +1,71 @@
OpenLayers
-=-=-=-=-=-
Copyright (c) 2005-2008 MetaCarta, Inc.
OpenLayers is a JavaScript library for building map applications
on the web. OpenLayers is made available under a BSD-license.
Please see license.txt in this distribution for more details.
------------------
Getting OpenLayers
------------------
OpenLayers lives at http://www.openlayers.org/.
You can get OpenLayers from
http://trac.openlayers.org/wiki/HowToDownload.
---------------------
Installing OpenLayers
---------------------
You can use OpenLayers as-is by copying build/OpenLayers.js and the
entire theme/ and img/ directories up to your webserver, putting them
in the same directory. The files can be in subdirectories on your website,
or right in the root of the site, as in these examples.
To include the OpenLayers library in your web page from the root of the site, use:
<script type="text/javascript" src="/OpenLayers.js" />
As an example, using bash (with the release files in ~/openlayers ):
$ cd /var/www/html
$ cp ~/openlayers/build/OpenLayers.js ./
$ cp -R ~/openlayers/theme ./
$ cp -R ~/openlayers/img ./
If you want to use the multiple-file version of OpenLayers (for, say,
debugging or development purposes), copy the lib/ directory up to your
webserver in the same directory you put the img/ folder. Then add
the following to your web page instead:
<script type="text/javascript" src="/lib/OpenLayers.js" />
As an example, using bash (with the release files in ~/openlayers ):
$ cd /var/www/html
$ cp -R ~/openlayers/lib ./
$ cp -R ~/openlayers/theme ./
$ cp -R ~/openlayers/img ./
------------------------------------
Using OpenLayers in Your Own Website
------------------------------------
The examples/ directory is full of useful examples.
Documentation is available at http://trac.openlayers.org/wiki/Documentation.
You can generate the API documentation with http://www.naturaldocs.org/:
As an example, using bash (with the release files in ~/openlayers ):
$ cd ~/openlayers/
$ /path/to/NaturalDocs -i lib/ -o HTML doc/ -p doc_config/ -s Default OL
Information on changes in the API is available in news.txt.
--------------------------
Contributing to OpenLayers
--------------------------
Please join the email lists at http://openlayers.org/mailman/listinfo
Patches are welcome!
= 30 =

View File

@ -0,0 +1,3 @@
This license information is now available at:
http://svn.openlayers.org/trunk/openlayers/license.txt

View File

@ -0,0 +1,3 @@
This license information is now available at:
http://svn.openlayers.org/trunk/openlayers/license.txt