Project

General

Profile

Download (951 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/* Copyright (c) 2006-2013 by OpenLayers Contributors (see authors.txt for
2
 * full list of contributors). Published under the 2-clause BSD license.
3
 * See license.txt in the OpenLayers distribution or repository for the
4
 * full text of the license. */
5

    
6
/**
7
 * @requires OpenLayers/Format/WMSCapabilities/v1_3.js
8
 */
9

    
10
/**
11
 * Class: OpenLayers.Format.WMSCapabilities/v1_3_0
12
 * Read WMS Capabilities version 1.3.0. 
13
 * SLD 1.1.0 adds in the extra operations DescribeLayer and GetLegendGraphic, 
14
 * see: http://schemas.opengis.net/sld/1.1.0/sld_capabilities.xsd
15
 * 
16
 * Inherits from:
17
 *  - <OpenLayers.Format.WMSCapabilities.v1_3>
18
 */
19
OpenLayers.Format.WMSCapabilities.v1_3_0 = OpenLayers.Class(
20
    OpenLayers.Format.WMSCapabilities.v1_3, {
21
    
22
    /**
23
     * Property: version
24
     * {String} The specific parser version.
25
     */
26
    version: "1.3.0",
27
    
28
    CLASS_NAME: "OpenLayers.Format.WMSCapabilities.v1_3_0" 
29

    
30
});
(7-7/7)