-
Notifications
You must be signed in to change notification settings - Fork 3
/
kml.js
433 lines (383 loc) · 10.8 KB
/
kml.js
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
"use strict"
export {
AltitudeMode,
Document,
PlaceMark,
Style,
Point,
Coordinate,
Coordinates,
When,
GxCoord,
GxTrack,
GxMultiTrack,
LineString,
Folder
};
import * as DF from './date-format.js';
import * as FXP from './js/fxp.min.js';
const toObject = c => c.toObject();
const toObjects = arr => arr.map( c => c.toObject());
const toStrings = arr => arr.map( c => c.toString());
// XML文件中恒为数组的TagName
const AlwaysArray = ['Style', 'Placemark', 'Folder', 'gx:coord', 'when'];
const XMLParserOptions={
ignoreAttributes: false,
parseAttributeValue: true,
attributeNamePrefix: "@",
cdataPropName: "__cdata",
isArray: (name, jpath, isLeafNode, isAttribute) => {
if(isAttribute)
return false;
if(jpath.endsWith('gx:MultiTrack.gx:Track')) // 特殊
return true;
return AlwaysArray.indexOf(name) !== -1;
}
};
class Document
{
constructor(name)
{
this.name= name;
this.description = undefined;
this.styles = []; // Style对象数组
this.placeMarks = []; // PlaceMark数组
this.folders = []; // Folder数组
}
toFile(beautify = false)
{
const kmlJson={
'?xml':{
'@version':'1.0',
'@encoding':'UTF-8'
},
'kml':{
'@xmlns':'http://www.opengis.net/kml/2.2',
'@xmlns:gx':'http://www.google.com/kml/ext/2.2',
'Document': {
'name': this.name,
'description': this.description,
'Style': toObjects(this.styles),
'Placemark': toObjects(this.placeMarks),
'Folder': toObjects(this.folders)
}
}
};
const builder = new FXP.fxp.XMLBuilder(Object.assign(XMLParserOptions, {'format':beautify}));
return builder.build(kmlJson);
}
static fromFile(content)
{
const parser = new FXP.fxp.XMLParser(XMLParserOptions);
const kmlJson = parser.parse(content);
if(kmlJson && 'kml' in kmlJson && 'Document' in kmlJson.kml){
let ret = new Document(undefined);
let docJson = kmlJson.kml.Document;
ret.name = docJson.name;
ret.description = docJson.description;
if(undefined != docJson.Style)
ret.styles = docJson.Style.map(o => Style.fromObject(o));
if(undefined != docJson.Placemark)
ret.placeMarks = docJson.Placemark.map(o => PlaceMark.fromObject(o));
if(undefined != docJson.Folder)
ret.folders = docJson.Folder.map(a => Folder.fromObject(a));
return ret;
}
return undefined;
}
}
class PlaceMark
{
constructor(name)
{
this.name = name;
this.description = undefined;
this.styleId = undefined; // 字符串,样式的ID名字
this.point = undefined; // Point对象
this.gxTrack = undefined; // GxTrack对象
this.gxMultiTrack = undefined; // GxMultiTrack对象
this.lineString = undefined; // LineString对象
}
toObject()
{
return {
'name':this.name,
'description':this.description,
'styleUrl': (undefined == this.styleId ? undefined : '#' + this.styleId),
'Point': (undefined == this.point ? undefined : toObject(this.point)),
'gx:Track':(undefined == this.gxTrack ? undefined : toObject(this.gxTrack)),
'gx:MultiTrack':(undefined == this.gxMultiTrack ? undefined : toObject(this.gxMultiTrack)),
'LineString':(undefined == this.lineString ? undefined : toObject(this.lineString))
};
}
static fromObject(o)
{
let ret = new PlaceMark;
ret.name = o.name;
ret.description = o.description;
if(undefined != o.styleUrl)
ret.styleId = o.styleUrl.replace(/^#/g,'');
if(undefined != o.Point)
ret.point = Point.fromObject(o.Point);
if(undefined != o['gx:Track'])
ret.gxTrack = GxTrack.fromObject(o['gx:Track']);
if(undefined != o['gx:MultiTrack'])
ret.gxMultiTrack = GxMultiTrack.fromObject(o['gx:MultiTrack']);
if(undefined != o.LineString)
ret.lineString = LineString.fromObject(o.LineString);
return ret;
}
}
class Style
{
constructor(id, lineColor=undefined, lineWidth=undefined)
{
// Not fully support IconStyle,StyleMap...
this.id = id;
this.lineColor = lineColor;
this.lineWidth = lineWidth;
}
toObject()
{
if(undefined == this.lineColor || undefined == this.lineWidth)
return undefined;
return {
'@id':this.id,
'LineStyle':{
'color':this.lineColor,
'width':this.lineWidth
}
};
}
static fromObject(o)
{
let ret = new Style;
ret.id = o['@id'];
if(undefined != o.LineStyle){
ret.lineColor = o.LineStyle.color;
ret.lineWidth = o.LineStyle.width;
}
return ret;
}
}
class Coordinate
{
constructor(lat, lon, altitude)
{
this.lat = lat;
this.lon = lon;
this.altitude = altitude;
}
toString()
{
let ret = this.lon +','+this.lat;
if(undefined!=this.altitude)
ret += ',' + this.altitude;
return ret;
}
static fromString(s)
{
const splited = s.split(',');
if(splited.length>=2)
{
let ret = new Coordinate(parseFloat(splited[1]), parseFloat(splited[0]));
if(splited.length >=3)
ret.altitude = parseFloat(splited[2]);
return ret;
}
return undefined;
}
}
class Coordinates
{
constructor(coordinateArray)
{
this.coordinateArray = coordinateArray; // Coordinate对象数组
}
toString()
{
return toStrings(this.coordinateArray).join(' ');
}
static fromString(s)
{
return new Coordinates(s.split(' ').map(cs => Coordinate.fromString(cs)));
}
}
class Point
{
constructor(coordinate, altitudeMode)
{
this.coordinate = coordinate;
this.altitudeMode = altitudeMode;
}
toObject()
{
return {
'altitudeMode':this.altitudeMode,
'coordinates':this.coordinate.toString()
}
}
static fromObject(o)
{
return new Point(Coordinate.fromString(o.coordinates), o.altitudeMode);
}
}
const AltitudeMode = {
// 海拔模式 https://developers.google.com/kml/documentation/altitudemode
RelativeToGround: 'relativeToGround', // 基于地球表面
Absolute: 'absolute', // 基于海平面
RelativeToSeaFloor: 'relativeToSeaFloor', // 基于主水体的底部
ClampToGround: 'clampToGround', //(此项作为默认值)海拔被忽略,沿地形放置在地面上
ClampToSeaFloor: 'clampToSeaFloor' // 海拔被忽略,沿地形放置在主水体的底部
};
class When
{
constructor(timestamp)
{
this.timestamp = timestamp; // int
}
toString()
{
return DF.toRfc3339(this.timestamp);
}
static fromString(s)
{
return new When(DF.fromRfc3339(s));
}
}
class GxCoord
{
constructor(lat, lon, altitude=undefined)
{
this.lat = lat;
this.lon = lon;
this.altitude = altitude;
}
toString()
{
let gxCoord = this.lon + ' ' + this.lat;
if(undefined != this.altitude)
gxCoord += ' ' + this.altitude;
return gxCoord;
}
static fromString(s)
{
const splited = s.split(' ');
if(splited.length>=2)
{
let ret = new GxCoord(parseFloat(splited[1]), parseFloat(splited[0]));
if(splited.length >=3)
ret.altitude = parseFloat(splited[2]);
return ret;
}
return undefined;
}
}
class GxTrack
{
// GPGGA记录中的高度是海平面高度。因此建议值为absolute
constructor(altitudeMode)
{
this.altitudeMode = altitudeMode;
this.whenArray = []; // When对象数组
this.gxCoordArray =[]; // GxCoord对象数组
}
append(when, gxCoord)
{
this.whenArray.push(when);
this.gxCoordArray.push(gxCoord);
}
toObject()
{
return {
'altitudeMode':this.altitudeMode,
'when': toStrings(this.whenArray),
'gx:coord': toStrings(this.gxCoordArray)
}
}
static fromObject(o)
{
let ret = new GxTrack;
ret.altitudeMode = o.altitudeMode;
if(undefined != o.when)
ret.whenArray = o.when.map(s => When.fromString(s));
if(undefined != o['gx:coord'])
ret.gxCoordArray = o['gx:coord'].map(s => GxCoord.fromString(s));
return ret;
}
}
class GxMultiTrack
{
// GPGGA记录中的高度是海平面高度。因此默认为absolute
constructor(altitudeMode, gxTracks = [])
{
this.altitudeMode = altitudeMode;
this.gxTracks = gxTracks; // GxTrack对象,要求每个Track构造时传入altitudeMode=undefined
}
toObject()
{
return {
'altitudeMode':this.altitudeMode,
'gx:interpolate': 0,
'gx:Track': toObjects(this.gxTracks)
}
}
static fromObject(o)
{
let ret = new GxMultiTrack;
ret.altitudeMode = o.altitudeMode;
if(undefined != o['gx:Track'])
ret.gxTracks = o['gx:Track'].map(o => GxTrack.fromObject(o));
return ret;
}
}
class LineString
{
constructor(coordinates, altitudeMode)
{
this.coordinates = coordinates; // Coordinates对象
this.altitudeMode = altitudeMode;
}
toObject()
{
return {
'tessellate': 1,
'altitudeMode':this.altitudeMode,
'coordinates': this.coordinates.toString()
};
}
static fromObject(o)
{
const coordinateText = o['coordinates'];
if(undefined != coordinateText){
return new LineString(Coordinates.fromString(coordinateText), o.altitudeMode);
}
return undefined;
}
}
class Folder
{
constructor(name, placeMarks = [])
{
this.name = name;
this.placeMarks = placeMarks; // PlaceMark对象数组
this.description = undefined;
}
toObject()
{
return {
'name' : this.name,
'description': this.description,
'Placemark' : toObjects(this.placeMarks)
};
}
static fromObject(o)
{
let ret = new Folder;
ret.name = o.name;
ret.description = o.description;
if(undefined != o.Placemark)
ret.placeMarks = o.Placemark.map(o => PlaceMark.fromObject(o));
return ret;
}
}