| 1 |
/* |
|---|
| 2 |
|
|---|
| 3 |
OpenLayers.js -- OpenLayers Map Viewer Library |
|---|
| 4 |
|
|---|
| 5 |
Copyright 2005-2008 MetaCarta, Inc., released under the Clear BSD license. |
|---|
| 6 |
Please see http://svn.openlayers.org/trunk/openlayers/license.txt |
|---|
| 7 |
for the full text of the license. |
|---|
| 8 |
|
|---|
| 9 |
Includes compressed code under the following licenses: |
|---|
| 10 |
|
|---|
| 11 |
(For uncompressed versions of the code used please see the |
|---|
| 12 |
OpenLayers SVN repository: <http://openlayers.org/>) |
|---|
| 13 |
|
|---|
| 14 |
*/ |
|---|
| 15 |
|
|---|
| 16 |
/* Contains portions of Prototype.js: |
|---|
| 17 |
* |
|---|
| 18 |
* Prototype JavaScript framework, version 1.4.0 |
|---|
| 19 |
* (c) 2005 Sam Stephenson <sam@conio.net> |
|---|
| 20 |
* |
|---|
| 21 |
* Prototype is freely distributable under the terms of an MIT-style license. |
|---|
| 22 |
* For details, see the Prototype web site: http://prototype.conio.net/ |
|---|
| 23 |
* |
|---|
| 24 |
*--------------------------------------------------------------------------*/ |
|---|
| 25 |
|
|---|
| 26 |
/** |
|---|
| 27 |
* |
|---|
| 28 |
* Contains portions of Rico <http://openrico.org/> |
|---|
| 29 |
* |
|---|
| 30 |
* Copyright 2005 Sabre Airline Solutions |
|---|
| 31 |
* |
|---|
| 32 |
* Licensed under the Apache License, Version 2.0 (the "License"); you |
|---|
| 33 |
* may not use this file except in compliance with the License. You |
|---|
| 34 |
* may obtain a copy of the License at |
|---|
| 35 |
* |
|---|
| 36 |
* http://www.apache.org/licenses/LICENSE-2.0 |
|---|
| 37 |
* |
|---|
| 38 |
* Unless required by applicable law or agreed to in writing, software |
|---|
| 39 |
* distributed under the License is distributed on an "AS IS" BASIS, |
|---|
| 40 |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
|---|
| 41 |
* implied. See the License for the specific language governing |
|---|
| 42 |
* permissions and limitations under the License. |
|---|
| 43 |
* |
|---|
| 44 |
**/ |
|---|
| 45 |
|
|---|
| 46 |
/** |
|---|
| 47 |
* Contains XMLHttpRequest.js <http://code.google.com/p/xmlhttprequest/> |
|---|
| 48 |
* Copyright 2007 Sergey Ilinsky (http://www.ilinsky.com) |
|---|
| 49 |
* |
|---|
| 50 |
* Licensed under the Apache License, Version 2.0 (the "License"); |
|---|
| 51 |
* you may not use this file except in compliance with the License. |
|---|
| 52 |
* You may obtain a copy of the License at |
|---|
| 53 |
* http://www.apache.org/licenses/LICENSE-2.0 |
|---|
| 54 |
*/ |
|---|