v1.js
11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
/* Copyright (c) 2006-2011 by OpenLayers Contributors (see authors.txt for
* full list of contributors). Published under the Clear BSD license.
* See http://svn.openlayers.org/trunk/openlayers/license.txt for the
* full text of the license. */
/**
* @requires OpenLayers/Format/XLS.js
* @requires OpenLayers/Format/GML/v3.js
*/
/**
* Class: OpenLayers.Format.XLS.v1
* Superclass for XLS version 1 parsers. Only supports GeocodeRequest for now.
*
* Inherits from:
* - <OpenLayers.Format.XML>
*/
OpenLayers.Format.XLS.v1 = OpenLayers.Class(OpenLayers.Format.XML, {
/**
* Property: namespaces
* {Object} Mapping of namespace aliases to namespace URIs.
*/
namespaces: {
xls: "http://www.opengis.net/xls",
gml: "http://www.opengis.net/gml",
xsi: "http://www.w3.org/2001/XMLSchema-instance"
},
/**
* Property: regExes
* Compiled regular expressions for manipulating strings.
*/
regExes: {
trimSpace: (/^\s*|\s*$/g),
removeSpace: (/\s*/g),
splitSpace: (/\s+/),
trimComma: (/\s*,\s*/g)
},
/**
* APIProperty: xy
* {Boolean} Order of the GML coordinate true:(x,y) or false:(y,x)
* Changing is not recommended, a new Format should be instantiated.
*/
xy: true,
/**
* Property: defaultPrefix
*/
defaultPrefix: "xls",
/**
* Property: schemaLocation
* {String} Schema location for a particular minor version.
*/
schemaLocation: null,
/**
* Constructor: OpenLayers.Format.XLS.v1
* Instances of this class are not created directly. Use the
* <OpenLayers.Format.XLS> constructor instead.
*
* Parameters:
* options - {Object} An optional object whose properties will be set on
* this instance.
*/
initialize: function(options) {
OpenLayers.Format.XML.prototype.initialize.apply(this, [options]);
},
/**
* Method: read
*
* Parameters:
* data - {DOMElement} An XLS document element.
* options - {Object} Options for the reader.
*
* Returns:
* {Object} An object representing the XLSResponse.
*/
read: function(data, options) {
options = OpenLayers.Util.applyDefaults(options, this.options);
var xls = {};
this.readChildNodes(data, xls);
return xls;
},
/**
* Property: readers
* Contains public functions, grouped by namespace prefix, that will
* be applied when a namespaced node is found matching the function
* name. The function will be applied in the scope of this parser
* with two arguments: the node being read and a context object passed
* from the parent.
*/
readers: {
"xls": {
"XLS": function(node, xls) {
xls.version = node.getAttribute("version");
this.readChildNodes(node, xls);
},
"Response": function(node, xls) {
this.readChildNodes(node, xls);
},
"GeocodeResponse": function(node, xls) {
xls.responseLists = [];
this.readChildNodes(node, xls);
},
"GeocodeResponseList": function(node, xls) {
var responseList = {
features: [],
numberOfGeocodedAddresses:
parseInt(node.getAttribute("numberOfGeocodedAddresses"))
};
xls.responseLists.push(responseList);
this.readChildNodes(node, responseList);
},
"GeocodedAddress": function(node, responseList) {
var feature = new OpenLayers.Feature.Vector();
responseList.features.push(feature);
this.readChildNodes(node, feature);
// post-process geometry
feature.geometry = feature.components[0];
},
"GeocodeMatchCode": function(node, feature) {
feature.attributes.matchCode = {
accuracy: parseFloat(node.getAttribute("accuracy")),
matchType: node.getAttribute("matchType")
};
},
"Address": function(node, feature) {
var address = {
countryCode: node.getAttribute("countryCode"),
addressee: node.getAttribute("addressee"),
street: [],
place: []
};
feature.attributes.address = address;
this.readChildNodes(node, address);
},
"freeFormAddress": function(node, address) {
address.freeFormAddress = this.getChildValue(node);
},
"StreetAddress": function(node, address) {
this.readChildNodes(node, address);
},
"Building": function(node, address) {
address.building = {
'number': node.getAttribute("number"),
subdivision: node.getAttribute("subdivision"),
buildingName: node.getAttribute("buildingName")
};
},
"Street": function(node, address) {
// only support the built-in primitive type for now
address.street.push(this.getChildValue(node));
},
"Place": function(node, address) {
// type is one of CountrySubdivision,
// CountrySecondarySubdivision, Municipality or
// MunicipalitySubdivision
address.place[node.getAttribute("type")] =
this.getChildValue(node);
},
"PostalCode": function(node, address) {
address.postalCode = this.getChildValue(node);
}
},
"gml": OpenLayers.Format.GML.v3.prototype.readers.gml
},
/**
* Method: write
*
* Parameters:
* request - {Object} An object representing the geocode request.
*
* Returns:
* {DOMElement} The root of an XLS document.
*/
write: function(request) {
return this.writers.xls.XLS.apply(this, [request]);
},
/**
* Property: writers
* As a compliment to the readers property, this structure contains public
* writing functions grouped by namespace alias and named like the
* node names they produce.
*/
writers: {
"xls": {
"XLS": function(request) {
var root = this.createElementNSPlus(
"xls:XLS",
{attributes: {
"version": this.VERSION,
"xsi:schemaLocation": this.schemaLocation
}}
);
this.writeNode("RequestHeader", request.header, root);
this.writeNode("Request", request, root);
return root;
},
"RequestHeader": function(header) {
return this.createElementNSPlus("xls:RequestHeader");
},
"Request": function(request) {
var node = this.createElementNSPlus("xls:Request", {
attributes: {
methodName: "GeocodeRequest",
requestID: request.requestID || "",
version: this.VERSION
}
});
this.writeNode("GeocodeRequest", request.addresses, node);
return node;
},
"GeocodeRequest": function(addresses) {
var node = this.createElementNSPlus("xls:GeocodeRequest");
for (var i=0, len=addresses.length; i<len; i++) {
this.writeNode("Address", addresses[i], node);
}
return node;
},
"Address": function(address) {
var node = this.createElementNSPlus("xls:Address", {
attributes: {
countryCode: address.countryCode
}
});
if (address.freeFormAddress) {
this.writeNode("freeFormAddess", address.freeFormAddress, node);
} else {
if (address.street) {
this.writeNode("StreetAddress", address, node);
}
if (address.municipality) {
this.writeNode("Municipality", address.municipality, node);
}
if (address.countrySubdivision) {
this.writeNode("CountrySubdivision", address.countrySubdivision, node);
}
if (address.postalCode) {
this.writeNode("PostalCode", address.postalCode, node);
}
}
return node;
},
"freeFormAddress": function(freeFormAddress) {
return this.createElementNSPlus("freeFormAddress",
{value: freeFormAddress});
},
"StreetAddress": function(address) {
var node = this.createElementNSPlus("xls:StreetAddress");
if (address.building) {
this.writeNode(node, "Building", address.building);
}
var street = address.street;
if (!(OpenLayers.Util.isArray(street))) {
street = [street];
}
for (var i=0, len=street.length; i < len; i++) {
this.writeNode("Street", street[i], node);
}
return node;
},
"Building": function(building) {
return this.createElementNSPlus("xls:Building", {
attributes: {
"number": building["number"],
"subdivision": building.subdivision,
"buildingName": building.buildingName
}
});
},
"Street": function(street) {
return this.createElementNSPlus("xls:Street", {value: street});
},
"Municipality": function(municipality) {
return this.createElementNSPlus("xls:Place", {
attributes: {
type: "Municipality"
},
value: municipality
});
},
"CountrySubdivision": function(countrySubdivision) {
return this.createElementNSPlus("xls:Place", {
attributes: {
type: "CountrySubdivision"
},
value: countrySubdivision
});
},
"PostalCode": function(postalCode) {
return this.createElementNSPlus("xls:PostalCode", {
value: postalCode
});
}
}
},
CLASS_NAME: "OpenLayers.Format.XLS.v1"
});