Merge branch 'support-for-points' into file-reader-support

This commit is contained in:
Chad Burt 2013-09-09 17:06:21 -07:00
commit c576d55289
1 changed files with 10 additions and 8 deletions

View File

@ -305,20 +305,22 @@
for (var r = 0, record; record = records[r]; r++){
feature = {}, fbounds = record.bounds, points = record.points, parts = record.parts
feature.type = "Feature"
feature.bbox = [
fbounds.left,
fbounds.bottom,
fbounds.right,
fbounds.top
]
if (record.shapeType !== 'Point') {
feature.bbox = [
fbounds.left,
fbounds.bottom,
fbounds.right,
fbounds.top
]
}
geometry = feature.geometry = {}
switch (record.shapeType) {
case "Point":
geometry.type = "Point"
geometry.coordinates = [
record.points.x,
record.points,y ]
record.x,
record.y ]
break
case "MultiPoint":
case "PolyLine":