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 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 | /* Copyright (c) 2006-2007 MetaCarta, Inc., published under a modified BSD license. * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt * for the full text of the license. */ /** * @requires OpenLayers/Format/XML.js * @requires OpenLayers/Feature/Vector.js * @requires OpenLayers/Geometry/Point.js * @requires OpenLayers/Geometry/LineString.js * @requires OpenLayers/Geometry/Polygon.js */ /** * Class: OpenLayers.Format.OSM * OSM parser. Create a new instance with the * <OpenLayers.Format.OSM> constructor. * * Inherits from: * - <OpenLayers.Format.XML> */ OpenLayers.Format.OSM = OpenLayers.Class(OpenLayers.Format.XML, { /** * APIProperty: checkTags * {Boolean} Should tags be checked to determine whether something * should be treated as a seperate node. Will slow down parsing. * Default is false. */ checkTags: false, /** * Property: interestingTagsExclude * {Array} List of tags to exclude from 'interesting' checks on nodes. * Must be set when creating the format. Will only be used if checkTags * is set. */ interestingTagsExclude: null, /** * APIProperty: areaTags * {Array} List of tags indicating that something is an area. * Must be set when creating the format. Will only be used if * checkTags is true. */ areaTags: null, /** * Constructor: OpenLayers.Format.OSM * Create a new parser for OSM. * * Parameters: * options - {Object} An optional object whose properties will be set on * this instance. */ initialize: function(options) { var layer_defaults = { 'interestingTagsExclude': ['source', 'source_ref', 'source:ref', 'history', 'attribution', 'created_by'], 'areaTags': ['area', 'building', 'leisure', 'tourism', 'ruins', 'historic', 'landuse', 'military', 'natural', 'sport'] }; layer_defaults = OpenLayers.Util.extend(layer_defaults, options); var interesting = {}; for (var i = 0; i < layer_defaults.interestingTagsExclude.length; i++) { interesting[layer_defaults.interestingTagsExclude[i]] = true; } layer_defaults.interestingTagsExclude = interesting; var area = {}; for (var i = 0; i < layer_defaults.areaTags.length; i++) { area[layer_defaults.areaTags[i]] = true; } layer_defaults.areaTags = area; OpenLayers.Format.XML.prototype.initialize.apply(this, [layer_defaults]); }, /** * APIMethod: read * Return a list of features from a OSM doc * Parameters: * data - {Element} * * Returns: * An Array of <OpenLayers.Feature.Vector>s */ read: function(doc) { if (typeof doc == "string") { doc = OpenLayers.Format.XML.prototype.read.apply(this, [doc]); } var nodes = this.getNodes(doc); var ways = this.getWays(doc); // Geoms will contain at least ways.length entries. var feat_list = new Array(ways.length); for (var i = 0; i < ways.length; i++) { // We know the minimal of this one ahead of time. (Could be -1 // due to areas/polygons) var point_list = new Array(ways[i].nodes.length); var poly = this.isWayArea(ways[i]) ? 1 : 0; for (var j = 0; j < ways[i].nodes.length; j++) { var node = nodes[ways[i].nodes[j]]; var point = new OpenLayers.Geometry.Point(node.lon, node.lat); // Since OSM is topological, we stash the node ID internally. point.osm_id = parseInt(ways[i].nodes[j]); point_list[j] = point; // We don't display nodes if they're used inside other // elements. node.used = true; } var geometry = null; if (poly) { geometry = new OpenLayers.Geometry.Polygon( new OpenLayers.Geometry.LinearRing(point_list)); } else { geometry = new OpenLayers.Geometry.LineString(point_list); } if (this.internalProjection && this.externalProjection) { geometry.transform(this.externalProjection, this.internalProjection); } var feat = new OpenLayers.Feature.Vector(geometry, ways[i].tags); feat.osm_id = parseInt(ways[i].id); feat.fid = "way." + feat.osm_id; feat_list[i] = feat; } for (var node_id in nodes) { var node = nodes[node_id]; if (!node.used || this.checkTags) { var tags = null; if (this.checkTags) { var result = this.getTags(node.node, true); if (node.used && !result[1]) { continue; } tags = result[0]; } else { tags = this.getTags(node.node); } var feat = new OpenLayers.Feature.Vector( new OpenLayers.Geometry.Point(node['lon'], node['lat']), tags); if (this.internalProjection && this.externalProjection) { feat.geometry.transform(this.externalProjection, this.internalProjection); } feat.osm_id = parseInt(node_id); feat.fid = "node." + feat.osm_id; feat_list.push(feat); } // Memory cleanup node.node = null; } return feat_list; }, /** * Method: getNodes * Return the node items from a doc. * * Parameters: * node - {DOMElement} node to parse tags from */ getNodes: function(doc) { var node_list = doc.getElementsByTagName("node"); var nodes = {}; for (var i = 0; i < node_list.length; i++) { var node = node_list[i]; var id = node.getAttribute("id"); nodes[id] = { 'lat': node.getAttribute("lat"), 'lon': node.getAttribute("lon"), 'node': node }; } return nodes; }, /** * Method: getWays * Return the way items from a doc. * * Parameters: * node - {DOMElement} node to parse tags from */ getWays: function(doc) { var way_list = doc.getElementsByTagName("way"); var return_ways = []; for (var i = 0; i < way_list.length; i++) { var way = way_list[i]; var way_object = { id: way.getAttribute("id") }; way_object.tags = this.getTags(way); var node_list = way.getElementsByTagName("nd"); way_object.nodes = new Array(node_list.length); for (var j = 0; j < node_list.length; j++) { way_object.nodes[j] = node_list[j].getAttribute("ref"); } return_ways.push(way_object); } return return_ways; }, /** * Method: getTags * Return the tags list attached to a specific DOM element. * * Parameters: * node - {DOMElement} node to parse tags from * interesting_tags - {Boolean} whether the return from this function should * return a boolean indicating that it has 'interesting tags' -- * tags like attribution and source are ignored. (To change the list * of tags, see interestingTagsExclude) * * Returns: * tags - {Object} hash of tags * interesting - {Boolean} if interesting_tags is passed, returns * whether there are any interesting tags on this element. */ getTags: function(dom_node, interesting_tags) { var tag_list = dom_node.getElementsByTagName("tag"); var tags = {}; var interesting = false; for (var j = 0; j < tag_list.length; j++) { var key = tag_list[j].getAttribute("k"); tags[key] = tag_list[j].getAttribute("v"); if (interesting_tags) { if (!this.interestingTagsExclude[key]) { interesting = true; } } } return interesting_tags ? [tags, interesting] : tags; }, /** * Method: isWayArea * Given a way object from getWays, check whether the tags and geometry * indicate something is an area. * * Returns: * {Boolean} */ isWayArea: function(way) { var poly_shaped = false; var poly_tags = false; if (way.nodes[0] == way.nodes[way.nodes.length - 1]) { poly_shaped = true; } if (this.checkTags) { for(var key in way.tags) { if (this.areaTags[key]) { poly_tags = true; break; } } } return poly_shaped && (this.checkTags ? poly_tags : true); }, /** * APIMethod: write * Takes a list of features, returns a serialized OSM format file for use * in tools like JOSM. * * Parameters: * features - {Array(<OpenLayers.Feature.Vector>)} */ write: function(features) { if (!(features instanceof Array)) { features = [features]; } this.osm_id = 1; this.created_nodes = {}; var root_node = this.createElementNS(null, "osm"); root_node.setAttribute("version", "0.5"); root_node.setAttribute("generator", "OpenLayers "+ OpenLayers.VERSION_NUMBER); // Loop backwards, because the deserializer puts nodes last, and // we want them first if possible for(var i = features.length - 1; i >= 0; i--) { var nodes = this.createFeatureNodes(features[i]); for (var j = 0; j < nodes.length; j++) { root_node.appendChild(nodes[j]); } } return OpenLayers.Format.XML.prototype.write.apply(this, [root_node]); }, /** * Method: createFeatureNodes * Takes a feature, returns a list of nodes from size 0->n. * Will include all pieces of the serialization that are required which * have not already been created. Calls out to createXML based on geometry * type. * * Parameters: * feature - {<OpenLayers.Feature.Vector>} */ createFeatureNodes: function(feature) { var nodes = []; var className = feature.geometry.CLASS_NAME; var type = className.substring(className.lastIndexOf(".") + 1); type = type.toLowerCase(); var builder = this.createXML[type]; if (builder) { nodes = builder.apply(this, [feature]); } return nodes; }, /** * Method: createXML * Takes a feature, returns a list of nodes from size 0->n. * Will include all pieces of the serialization that are required which * have not already been created. * * Parameters: * feature - {<OpenLayers.Feature.Vector>} */ createXML: { 'point': function(point) { var id = null; var geometry = point.geometry ? point.geometry : point; var already_exists = false; // We don't return anything if the node // has already been created if (point.osm_id) { id = point.osm_id; if (this.created_nodes[id]) { already_exists = true; } } else { id = -this.osm_id; this.osm_id++; } if (already_exists) { node = this.created_nodes[id]; } else { var node = this.createElementNS(null, "node"); } this.created_nodes[id] = node; node.setAttribute("id", id); node.setAttribute("lon", geometry.x); node.setAttribute("lat", geometry.y); if (point.attributes) { this.serializeTags(point, node); } this.setState(point, node); return already_exists ? [] : [node]; }, linestring: function(feature) { var nodes = []; var geometry = feature.geometry; if |