Project

General

Profile

Download (1.33 KB) 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/XLS/v1.js
8
 */
9

    
10
/**
11
 * Class: OpenLayers.Format.XLS.v1_1_0
12
 * Read / write XLS version 1.1.0.
13
 * 
14
 * Inherits from:
15
 *  - <OpenLayers.Format.XLS.v1>
16
 */
17
OpenLayers.Format.XLS.v1_1_0 = OpenLayers.Class(
18
    OpenLayers.Format.XLS.v1, {
19
    
20
    /**
21
     * Constant: VERSION
22
     * {String} 1.1
23
     */
24
    VERSION: "1.1",
25
    
26
    /**
27
     * Property: schemaLocation
28
     * {String} http://www.opengis.net/xls
29
     *   http://schemas.opengis.net/ols/1.1.0/LocationUtilityService.xsd
30
     */
31
    schemaLocation: "http://www.opengis.net/xls http://schemas.opengis.net/ols/1.1.0/LocationUtilityService.xsd",
32

    
33
    /**
34
     * Constructor: OpenLayers.Format.XLS.v1_1_0
35
     * Instances of this class are not created directly.  Use the
36
     *     <OpenLayers.Format.XLS> constructor instead.
37
     *
38
     * Parameters:
39
     * options - {Object} An optional object whose properties will be set on
40
     *     this instance.
41
     */
42

    
43
    CLASS_NAME: "OpenLayers.Format.XLS.v1_1_0"
44

    
45
});
46

    
47
// Support non standard implementation
48
OpenLayers.Format.XLS.v1_1 = OpenLayers.Format.XLS.v1_1_0;
(2-2/2)