L.OSM = {}; L.OSM.TileLayer = L.TileLayer.extend({ options: { url: 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', attribution: '© OpenStreetMap and contributors, under an open license' }, initialize: function (options) { options = L.Util.setOptions(this, options); L.TileLayer.prototype.initialize.call(this, options.url); } }); L.OSM.Mapnik = L.OSM.TileLayer.extend({ options: { url: 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png' } }); L.OSM.CycleMap = L.OSM.TileLayer.extend({ options: { url: 'http://{s}.tile.opencyclemap.org/cycle/{z}/{x}/{y}.png' } }); L.OSM.TransportMap = L.OSM.TileLayer.extend({ options: { url: 'http://{s}.tile2.opencyclemap.org/transport/{z}/{x}/{y}.png' } }); L.OSM.MapQuestOpen = L.OSM.TileLayer.extend({ options: { url: 'http://otile{s}.mqcdn.com/tiles/1.0.0/osm/{z}/{x}/{y}.png', subdomains: '1234', attribution: "Tiles courtesy of MapQuest " } }); L.OSM.DataLayer = L.FeatureGroup.extend({ options: { areaTags: ['area', 'building', 'leisure', 'tourism', 'ruins', 'historic', 'landuse', 'military', 'natural', 'sport'], uninterestingTags: ['source', 'source_ref', 'source:ref', 'history', 'attribution', 'created_by', 'tiger:county', 'tiger:tlid', 'tiger:upload_uuid'], styles: {} }, initialize: function (xml, options) { L.Util.setOptions(this, options); L.FeatureGroup.prototype.initialize.call(this); if (xml) { this.addData(xml); } }, addData: function (features) { if (!(features instanceof Array)) { features = this.buildFeatures(features); } for (var i = 0; i < features.length; i++) { var feature = features[i], layer; if (feature.type === "node") { layer = L.circleMarker(feature.latLng, this.options.styles.node); } else { var latLngs = new Array(feature.nodes.length); for (var j = 0; j < feature.nodes.length; j++) { latLngs[j] = feature.nodes[j].latLng; } if (this.isWayArea(feature)) { latLngs.pop(); // Remove last == first. layer = L.polygon(latLngs, this.options.styles.area); } else { layer = L.polyline(latLngs, this.options.styles.way); } } layer.addTo(this); layer.feature = feature; } }, buildFeatures: function (xml) { var features = [], nodes = L.OSM.getNodes(xml), ways = L.OSM.getWays(xml, nodes); for (var node_id in nodes) { var node = nodes[node_id]; if (this.interestingNode(node, ways)) { features.push(node); } } for (var i = 0; i < ways.length; i++) { var way = ways[i]; features.push(way); } return features; }, isWayArea: function (way) { if (way.nodes[0] != way.nodes[way.nodes.length - 1]) { return false; } for (var key in way.tags) { if (~this.options.areaTags.indexOf(key)) { return true; } } return false; }, interestingNode: function (node, ways) { var used = false; for (var i = 0; i < ways.length; i++) { if (ways[i].nodes.indexOf(node) >= 0) { used = true; break; } } if (!used) { return true; } for (var key in node.tags) { if (this.options.uninterestingTags.indexOf(key) < 0) { return true; } } return false; } }); L.Util.extend(L.OSM, { getNodes: function (xml) { var result = {}; var nodes = xml.getElementsByTagName("node"); for (var i = 0; i < nodes.length; i++) { var node = nodes[i], id = node.getAttribute("id"); result[id] = { id: id, type: "node", latLng: L.latLng(node.getAttribute("lat"), node.getAttribute("lon"), true), tags: this.getTags(node) }; } return result; }, getWays: function (xml, nodes) { var result = []; var ways = xml.getElementsByTagName("way"); for (var i = 0; i < ways.length; i++) { var way = ways[i], nds = way.getElementsByTagName("nd"); var way_object = { id: way.getAttribute("id"), type: "way", nodes: new Array(nds.length), tags: this.getTags(way) }; for (var j = 0; j < nds.length; j++) { way_object.nodes[j] = nodes[nds[j].getAttribute("ref")]; } result.push(way_object); } return result; }, getTags: function (xml) { var result = {}; var tags = xml.getElementsByTagName("tag"); for (var j = 0; j < tags.length; j++) { result[tags[j].getAttribute("k")] = tags[j].getAttribute("v"); } return result; } });