Bienvenue sur PostGIS.fr

Bienvenue sur PostGIS.fr , le site de la communauté des utilisateurs francophones de PostGIS.

PostGIS ajoute le support d'objets géographique à la base de données PostgreSQL. En effet, PostGIS "spatialise" le serverur PostgreSQL, ce qui permet de l'utiliser comme une base de données SIG.

Maintenu à jour, en fonction de nos disponibilités et des diverses sorties des outils que nous testons, nous vous proposons l'ensemble de nos travaux publiés en langue française.

source: trunk/workshop-routing-foss4g/web/OpenLayers/readme.txt @ 76

Revision 76, 2.3 KB checked in by djay, 12 years ago (diff)

Ajout du répertoire web

  • Property svn:executable set to *
Line 
1OpenLayers
2-=-=-=-=-=-
3Copyright (c) 2005-2010 OpenLayers Contributors. See authors.txt for
4more details.
5
6OpenLayers is a JavaScript library for building map applications
7on the web. OpenLayers is made available under a BSD-license.
8Please see license.txt in this distribution for more details.
9
10------------------
11Getting OpenLayers
12------------------
13
14OpenLayers lives at http://www.openlayers.org/.
15
16You can get OpenLayers from
17    http://trac.openlayers.org/wiki/HowToDownload.
18
19---------------------
20Installing OpenLayers
21---------------------
22
23You can use OpenLayers as-is by copying build/OpenLayers.js and the
24entire theme/ and img/ directories up to your webserver, putting them
25in the same directory. The files can be in subdirectories on your website,
26or right in the root of the site, as in these examples.
27To include the OpenLayers library in your web page from the root of the site, use:
28
29  <script type="text/javascript" src="/OpenLayers.js" />
30
31As an example, using bash (with the release files in ~/openlayers ):
32$ cd /var/www/html
33$ cp ~/openlayers/build/OpenLayers.js ./
34$ cp -R ~/openlayers/theme ./
35$ cp -R ~/openlayers/img ./
36
37If you want to use the multiple-file version of OpenLayers (for, say,
38debugging or development purposes), copy the lib/ directory up to your
39webserver in the same directory you put the img/ folder. Then add
40the following to your web page instead:
41
42  <script type="text/javascript" src="/lib/OpenLayers.js" />
43
44As an example, using bash (with the release files in ~/openlayers ):
45$ cd /var/www/html
46$ cp -R ~/openlayers/lib ./
47$ cp -R ~/openlayers/theme ./
48$ cp -R ~/openlayers/img ./
49
50
51------------------------------------
52Using OpenLayers in Your Own Website
53------------------------------------
54
55The examples/ directory is full of useful examples.
56
57Documentation is available at http://trac.openlayers.org/wiki/Documentation.
58You can generate the API documentation with http://www.naturaldocs.org/:
59As an example, using bash (with the release files in ~/openlayers ):
60$ cd ~/openlayers/
61$ /path/to/NaturalDocs -i lib/ -o HTML doc/ -p doc_config/ -s Default OL
62
63Information on changes in the API is available in news.txt.
64
65--------------------------
66Contributing to OpenLayers
67--------------------------
68
69Please join the email lists at http://openlayers.org/mailman/listinfo
70Patches are welcome!
71
72= 30 =
Note: See TracBrowser for help on using the repository browser.