Skip to content

Instantly share code, notes, and snippets.

@wboykinm
Created February 9, 2014 02:58
Show Gist options
  • Save wboykinm/8893528 to your computer and use it in GitHub Desktop.
Save wboykinm/8893528 to your computer and use it in GitHub Desktop.
leaflet.d3.js demo
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!doctype html>
<html>
<head>
<title>Leaflet.D3.js demo</title>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.ie.css" />
<![endif]-->
<script src="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.js"></script>
<script src="leaflet.d3.js"></script>
<style type='text/css'>
#svg-streets path {
fill:none;
stroke: rgba(0,0,0,0.3);
}
#svg-streets path:hover {
stroke: #0c0;
cursor: pointer;
}
#svg-streets .highway-residential { stroke-width: 1px; }
#svg-streets .highway-primary { stroke-width: 4px; }
#svg-streets .highway-secondary { stroke-width: 3px; }
#svg-streets .highway-tertiary { stroke-width: 2px; }
#svg-buildings path {
fill: rgba(0,0,0,0.3);
}
#svg-buildings path:hover {
fill: #00c;
cursor: pointer;
}
#svg-places path {
fill: yellow;
}
</style>
<script type='text/javascript'>
window.onload = function() {
var map = L.map('map',{
maxBounds: [[46.6412301,23.4324747],[46.9201137,23.8047838]]
}).fitBounds([[46.7412301, 23.53816],[46.76813, 23.59253]]);
L.tileLayer('http://a.tile.stamen.com/toner/{z}/{x}/{y}.png').addTo(map);
d3.json("streets.geojson", function(collection) {
var layer = new L.D3geoJSON(collection, {
id: 'svg-streets',
featureAttributes: {
'class': function(feature) {
return 'highway-' + feature.properties.highway;
}
},
}).addTo(map).on('click', function(e) {
console.log(e.data.properties.name);
});
});
d3.json("buildings.geojson", function(collection) {
var layer = new L.D3geoJSON(collection, {
id: 'svg-buildings',
}).addTo(map).on('click', function(e) {
console.log(e);
});
});
// d3.json("../buildings/temp-data/pins.json", function(collection) {
// var layer = new L.D3geoJSON(collection, {
// id: 'svg-places',
// }).addTo(map).on('click', function(e) {
// console.log(e);
// });
// });
};
</script>
</head>
<body>
<div id='map' style='position:absolute;top:0;left:0;right:0;bottom:0;'></div>
</body>
</html>
L.D3geoJSON = L.Class.extend({
includes: L.Mixin.Events,
initialize: function(data, options) {
this.data = data;
this.options = options;
var that = this;
this._clickHandler = function(data, idx) {
that.fire('click', {
element: this,
data: data,
originalEvent: d3.event
});
};
},
onAdd: function(map) {
this._map = map;
this._first = true;
this._initZoomLvl = map._zoom;
this._svg = d3.select(this._map.getPanes().overlayPane).append('svg');
this._svg.attr('pointer-events', 'none');
this._group = this._svg.append('g');
this._group.attr('class', 'leaflet-zoom-hide ' + (this.options.className || ''));
if (this.options.id) {
this._svg.attr('id', this.options.id);
}
function latLngToPoint(latlng) {
return map.project(latlng)._subtract(map.getPixelOrigin());
};
var t = d3.geo.transform({
point: function(x, y) {
var point = latLngToPoint(new L.LatLng(y, x));
return this.stream.point(point.x, point.y);
}
});
this.path = d3.geo.path().projection(t);
this._feature = this._group.selectAll('path')
.data(this.data.features)
.enter()
.append('path')
.on('click', this._clickHandler);
this._map.on('viewreset', this.reset, this);
this._feature.attr('pointer-events', this.options.pointerEvents || 'visible');
if (this.options.featureAttributes) {
for (var i in this.options.featureAttributes) {
this._feature.attr(i, this.options.featureAttributes[i]);
}
}
this.reset();
},
onRemove: function(map) {
this._svg.remove();
this._map.off('viewreset', this.reset, this);
},
reset: function(e) {
if (!this._bounds) {
this._bounds = d3.geo.path().projection(null).bounds(this.data);
}
var topLeft = this._map.latLngToLayerPoint([this._bounds[0][1], this._bounds[0][0]]),
bottomRight = this._map.latLngToLayerPoint([this._bounds[1][1], this._bounds[1][0]]);
this._svg
.attr('width', bottomRight.x - topLeft.x)
.attr('height', topLeft.y - bottomRight.y)
.style('left', topLeft.x + 'px')
.style('top', bottomRight.y + 'px');
if (this._first) {
this._group.attr('transform', 'translate(' + -topLeft.x + ',' + -bottomRight.y + ')');
this._feature.attr('d', this.path);
this._initTopLeft = topLeft;
this._initBottomRight = bottomRight;
this._first = false;
} else {
var trans = d3.transform(this._group.attr('transform')),
oldScale = trans.scale;
trans.scale = [oldScale[0] * ((bottomRight.x - topLeft.x) / (this._oldBottomRight.x - this._oldTopLeft.x)),
oldScale[1] * ((topLeft.y - bottomRight.y) / (this._oldTopLeft.y - this._oldBottomRight.y))
];
trans.translate = [-this._initTopLeft.x, -this._initBottomRight.y];
this._group.attr('transform', 'scale('+trans.scale[0]+ ','+trans.scale[1]+')translate('+trans.translate[0] +',' + trans.translate[1] +')');
}
this._oldTopLeft = topLeft;
this._oldBottomRight = bottomRight;
this._svg.attr('class', 'zoom-' + this._map.getZoom());
},
addTo: function(map) {
map.addLayer(this);
return this;
}
});
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"id": "way/43051182",
"name": "Piața Avram Iancu",
"highway": "pedestrian"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
[
23.5963601,
46.7716518
],
[
23.5960443,
46.7715767
],
[
23.5960789,
46.7715218
],
[
23.5960814,
46.7715161
],
[
23.5964284,
46.771595
],
[
23.5964858,
46.7714855
],
[
23.5964692,
46.7714679
],
[
23.5963912,
46.7714558
],
[
23.5961154,
46.7714512
],
[
23.5961759,
46.7713333
],
[
23.5964895,
46.7713651
],
[
23.5964821,
46.771349
],
[
23.5964782,
46.7713372
],
[
23.5964758,
46.7713228
],
[
23.5964751,
46.7713067
],
[
23.5964766,
46.7712842
],
[
23.596479,
46.7712623
],
[
23.5964821,
46.7712414
],
[
23.5964844,
46.7712227
],
[
23.5964774,
46.7712131
],
[
23.5964594,
46.7712056
],
[
23.5962562,
46.771177
],
[
23.5962683,
46.7711538
],
[
23.5964938,
46.7711912
],
[
23.5965047,
46.7711821
],
[
23.5965141,
46.7711746
],
[
23.596529,
46.7711644
],
[
23.5965399,
46.7711559
],
[
23.5965539,
46.7711462
],
[
23.596568,
46.7711371
],
[
23.5965875,
46.7711254
],
[
23.5966063,
46.7711173
],
[
23.5966289,
46.7711088
],
[
23.5966602,
46.7711008
],
[
23.5966851,
46.7710943
],
[
23.5967117,
46.7710901
],
[
23.5967406,
46.7710874
],
[
23.5967664,
46.7710853
],
[
23.5967929,
46.7710847
],
[
23.5968187,
46.7710826
],
[
23.5968751,
46.77099
],
[
23.5968254,
46.7709537
],
[
23.5967945,
46.7709224
],
[
23.5967677,
46.7708903
],
[
23.5967422,
46.7708545
],
[
23.5967114,
46.7707938
],
[
23.5966899,
46.770724
],
[
23.5966886,
46.7706679
],
[
23.5967858,
46.7706913
],
[
23.5967905,
46.7707305
],
[
23.5968013,
46.7707589
],
[
23.5968187,
46.770803
],
[
23.5968482,
46.7708627
],
[
23.596867,
46.7708903
],
[
23.5968911,
46.7709142
],
[
23.5969268,
46.7709445
],
[
23.5970132,
46.7707403
],
[
23.5971281,
46.7707662
],
[
23.5970361,
46.7709692
],
[
23.5971298,
46.7709509
],
[
23.5971955,
46.7709289
],
[
23.5972398,
46.7709077
],
[
23.5972854,
46.7708747
],
[
23.5973136,
46.7708462
],
[
23.5973439,
46.7708146
],
[
23.5974369,
46.7708388
],
[
23.5974061,
46.7708839
],
[
23.5973739,
46.7709142
],
[
23.597327,
46.7709463
],
[
23.5972545,
46.7709849
],
[
23.5971781,
46.7710069
],
[
23.5971245,
46.7710152
],
[
23.5970923,
46.7710235
],
[
23.597048,
46.7710262
],
[
23.5970131,
46.7710235
],
[
23.5969483,
46.7711183
],
[
23.5969629,
46.7711264
],
[
23.5969776,
46.7711351
],
[
23.5969903,
46.7711471
],
[
23.5970039,
46.7711571
],
[
23.5970166,
46.7711705
],
[
23.5970244,
46.7711845
],
[
23.5970332,
46.7711959
],
[
23.5970381,
46.7712093
],
[
23.597042,
46.7712213
],
[
23.5970459,
46.7712327
],
[
23.5970508,
46.7712474
],
[
23.5970537,
46.7712621
],
[
23.5970557,
46.7712775
],
[
23.5970576,
46.7712935
],
[
23.5970557,
46.7713089
],
[
23.5970527,
46.7713243
],
[
23.5970479,
46.7713397
],
[
23.5970469,
46.771351
],
[
23.5972524,
46.7714021
],
[
23.5972342,
46.7714301
],
[
23.5970381,
46.7713811
],
[
23.5970274,
46.7713918
],
[
23.5970147,
46.7714012
],
[
23.5970039,
46.7714112
],
[
23.5969922,
46.7714212
],
[
23.5969785,
46.7714326
],
[
23.5969629,
46.7714413
],
[
23.5969483,
46.7714493
],
[
23.5969327,
46.7714573
],
[
23.596918,
46.7714647
],
[
23.5968956,
46.7714727
],
[
23.5968829,
46.7714787
],
[
23.5971584,
46.7715503
],
[
23.5970663,
46.7716933
],
[
23.5968715,
46.7716091
],
[
23.5967983,
46.7715623
],
[
23.5967589,
46.7715583
],
[
23.5967052,
46.7716626
],
[
23.5970309,
46.7717471
],
[
23.5969922,
46.7718099
],
[
23.5963601,
46.7716518
]
]
],
[
[
23.5965359,
46.7706246
],
[
23.5966886,
46.7706679
],
[
23.5967858,
46.7706913
],
[
23.5967945,
46.7706956
],
[
23.5970105,
46.7707415
],
[
23.5970132,
46.7707403
],
[
23.5971281,
46.7707662
],
[
23.5971336,
46.7707663
],
[
23.5973317,
46.770812
],
[
23.5973439,
46.7708146
],
[
23.5974369,
46.7708388
],
[
23.5975844,
46.7708767
]
],
[
[
23.5953651,
46.7725867
],
[
23.5953921,
46.7725517
],
[
23.5960443,
46.7715767
],
[
23.5960732,
46.771532
],
[
23.5960789,
46.7715218
],
[
23.5960814,
46.7715161
],
[
23.5961124,
46.7714598
],
[
23.5961154,
46.7714512
],
[
23.5961759,
46.7713333
],
[
23.596179,
46.7713272
],
[
23.596254,
46.7711847
],
[
23.5962562,
46.771177
],
[
23.5962683,
46.7711538
],
[
23.5962724,
46.7711453
],
[
23.596447,
46.7708054
],
[
23.5965445,
46.7706363
],
[
23.5965359,
46.7706246
]
],
[
[
23.5975844,
46.7708767
],
[
23.5975839,
46.7708778
],
[
23.5972705,
46.7713721
],
[
23.5972566,
46.7713946
],
[
23.5972524,
46.7714021
],
[
23.5972342,
46.7714301
],
[
23.5972335,
46.7714341
],
[
23.5971602,
46.7715433
],
[
23.5971584,
46.7715503
],
[
23.5970663,
46.7716933
],
[
23.5970593,
46.7717008
],
[
23.5970366,
46.7717407
],
[
23.5970309,
46.7717471
],
[
23.5969922,
46.7718099
],
[
23.5963657,
46.7728126
],
[
23.5964721,
46.7729794
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/113943740",
"name": "Piața Horea, Cloșca și Crișan",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
[
23.5775218,
46.7717557
],
[
23.5775275,
46.7719506
],
[
23.5773465,
46.7719262
],
[
23.5775218,
46.7717557
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/177921853",
"name": "Piața Muzeului",
"highway": "pedestrian"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
[
23.5865687,
46.7715836
],
[
23.5875979,
46.7719519
],
[
23.5876559,
46.7719574
],
[
23.5876902,
46.7719583
],
[
23.5877587,
46.7717369
],
[
23.5876081,
46.7717064
],
[
23.587432,
46.7716614
],
[
23.5872341,
46.7715956
],
[
23.5870833,
46.7715504
],
[
23.5869514,
46.771513
],
[
23.5867097,
46.7714304
],
[
23.5866844,
46.7714608
],
[
23.5865687,
46.7715836
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/7851893",
"name": "Calea Turzii",
"highway": "primary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.596901,
46.7561988
],
[
23.5970103,
46.7562528
]
],
[
[
23.5962107,
46.7553871
],
[
23.5963014,
46.7556653
],
[
23.596347,
46.7557737
]
],
[
[
23.5960961,
46.755773
],
[
23.5962107,
46.7553871
]
],
[
[
23.5983658,
46.7643114
],
[
23.598077,
46.764039
],
[
23.5978356,
46.7634547
],
[
23.5977176,
46.7631681
],
[
23.5976425,
46.7623082
],
[
23.5977506,
46.7622723
]
],
[
[
23.5977672,
46.7608723
],
[
23.5978357,
46.7612086
],
[
23.5979044,
46.7620788
],
[
23.5979726,
46.7623192
],
[
23.5982729,
46.7633823
],
[
23.5984404,
46.7639795
],
[
23.5983658,
46.7643114
]
],
[
[
23.5913662,
46.7382476
],
[
23.5912889,
46.7384086
],
[
23.5912621,
46.7385483
],
[
23.5912149,
46.7388027
]
],
[
[
23.598016,
46.7676459
],
[
23.5980755,
46.7672576
],
[
23.5982189,
46.7668736
]
],
[
[
23.5928664,
46.7469993
],
[
23.5929736,
46.7474931
],
[
23.5931297,
46.7479727
],
[
23.5931842,
46.748078
],
[
23.5933011,
46.7483037
],
[
23.5939325,
46.7496253
],
[
23.5941583,
46.7500754
],
[
23.5942084,
46.750181
],
[
23.5944021,
46.7505893
],
[
23.5947739,
46.7512706
],
[
23.5950855,
46.7518415
],
[
23.59568,
46.7530538
],
[
23.5958402,
46.7533655
],
[
23.5959192,
46.7538377
],
[
23.5959951,
46.7541875
],
[
23.5960529,
46.7544195
],
[
23.596086,
46.7545659
],
[
23.5961481,
46.7547745
]
],
[
[
23.5982729,
46.7633823
],
[
23.5978356,
46.7634547
]
],
[
[
23.5963892,
46.7558485
],
[
23.596529,
46.7559351
],
[
23.596901,
46.7561988
]
],
[
[
23.596901,
46.7561988
],
[
23.5963051,
46.7559498
]
],
[
[
23.5961481,
46.7547745
],
[
23.5962107,
46.7553871
]
],
[
[
23.5970103,
46.7562528
],
[
23.5973669,
46.7564092
],
[
23.5977824,
46.7566108
],
[
23.5979283,
46.7567402
],
[
23.597954,
46.7569343
],
[
23.5978987,
46.7571944
],
[
23.5976889,
46.7576856
],
[
23.5976459,
46.7578772
],
[
23.5977179,
46.7580673
],
[
23.5978682,
46.7581926
],
[
23.5982716,
46.7583866
],
[
23.5984436,
46.7585299
],
[
23.5985381,
46.7586655
],
[
23.5985833,
46.7588054
],
[
23.5985892,
46.7588865
],
[
23.5985233,
46.7590997
],
[
23.5984502,
46.759274
],
[
23.5979182,
46.7604602
],
[
23.5977672,
46.7608723
],
[
23.5977107,
46.7610623
],
[
23.5976677,
46.7613622
],
[
23.5976592,
46.7616856
],
[
23.5976943,
46.7619505
],
[
23.5977107,
46.7620737
],
[
23.5977506,
46.7622723
],
[
23.5978051,
46.762544
],
[
23.5980497,
46.7633719
]
],
[
[
23.5926764,
46.7460219
],
[
23.5927767,
46.7465163
],
[
23.5928664,
46.7469993
]
],
[
[
23.5921891,
46.7434743
],
[
23.5922878,
46.7439904
],
[
23.5923459,
46.7442942
]
],
[
[
23.5919396,
46.7424383
],
[
23.592174,
46.7433953
],
[
23.5921891,
46.7434743
]
],
[
[
23.5970538,
46.765785
],
[
23.5971804,
46.7656933
],
[
23.598526,
46.765409
],
[
23.5987464,
46.7653601
]
],
[
[
23.6037742,
46.7232707
],
[
23.603738,
46.7234665
],
[
23.603734,
46.7239372
],
[
23.6037412,
46.7253186
],
[
23.6036975,
46.7255768
],
[
23.603577,
46.7257974
],
[
23.6033327,
46.7260447
],
[
23.6030036,
46.7262536
],
[
23.6025642,
46.7263867
],
[
23.6019771,
46.7264376
],
[
23.5997611,
46.7265179
],
[
23.5991444,
46.7266005
],
[
23.5987043,
46.7267373
],
[
23.5984621,
46.7269131
],
[
23.5983829,
46.7271078
],
[
23.5984503,
46.7273179
],
[
23.5986726,
46.7275016
],
[
23.6000116,
46.7280802
],
[
23.6004531,
46.7283148
],
[
23.6006462,
46.728595
],
[
23.6006593,
46.7288573
],
[
23.6005413,
46.7291405
],
[
23.6002323,
46.7295444
],
[
23.6000411,
46.7297108
],
[
23.5998536,
46.7298358
],
[
23.5976105,
46.7309676
],
[
23.5951536,
46.7322205
],
[
23.594939,
46.7324558
],
[
23.5948102,
46.7328676
],
[
23.5945957,
46.7338383
],
[
23.5946815,
46.7348678
],
[
23.5945957,
46.7354266
],
[
23.5942523,
46.7358384
],
[
23.5922008,
46.7374012
],
[
23.591662,
46.7378492
]
],
[
[
23.5980801,
46.763475
],
[
23.5980969,
46.7635318
],
[
23.5983658,
46.7643114
],
[
23.5986321,
46.7650836
],
[
23.5987464,
46.7653601
],
[
23.5988801,
46.7656837
],
[
23.5988973,
46.7658365
],
[
23.5988286,
46.7659894
],
[
23.5986999,
46.7661716
],
[
23.5982189,
46.7668736
]
],
[
[
23.5980497,
46.7633719
],
[
23.5980801,
46.763475
]
],
[
[
23.5960652,
46.7558069
],
[
23.5960961,
46.755773
],
[
23.5961466,
46.7557468
],
[
23.5962245,
46.7557349
],
[
23.5962959,
46.7557469
],
[
23.596347,
46.7557737
],
[
23.596378,
46.7558086
],
[
23.5963892,
46.7558485
],
[
23.5963781,
46.7558913
],
[
23.5963583,
46.7559167
],
[
23.5963051,
46.7559498
],
[
23.5962502,
46.7559635
],
[
23.5962112,
46.7559651
],
[
23.5961455,
46.755953
],
[
23.5961001,
46.7559301
],
[
23.5960604,
46.755884
],
[
23.5960547,
46.7558334
],
[
23.5960652,
46.7558069
]
],
[
[
23.5912149,
46.7388027
],
[
23.5911601,
46.7386328
],
[
23.5911762,
46.7384122
],
[
23.5911841,
46.7382205
]
],
[
[
23.5912818,
46.7381144
],
[
23.591662,
46.7378492
]
],
[
[
23.5912149,
46.7388027
],
[
23.5912529,
46.7391001
],
[
23.5913824,
46.7397298
],
[
23.5915699,
46.7406413
],
[
23.5919396,
46.7424383
]
],
[
[
23.5911878,
46.738157
],
[
23.5912111,
46.7381355
],
[
23.5912438,
46.7381207
],
[
23.5912818,
46.7381144
],
[
23.5913207,
46.7381175
],
[
23.5913599,
46.7381317
],
[
23.5913855,
46.738152
],
[
23.5913994,
46.7381771
],
[
23.5913999,
46.738204
],
[
23.5913895,
46.738226
],
[
23.5913662,
46.7382476
],
[
23.5913335,
46.7382624
],
[
23.5912955,
46.7382687
],
[
23.591273,
46.738268
],
[
23.5912357,
46.7382598
],
[
23.5912049,
46.7382432
],
[
23.5911841,
46.7382205
],
[
23.591176,
46.7381943
],
[
23.5911878,
46.738157
]
],
[
[
23.591662,
46.7378492
],
[
23.5914766,
46.738074
],
[
23.5913999,
46.738204
]
],
[
[
23.5950433,
46.7440769
],
[
23.5945567,
46.7441161
],
[
23.5923459,
46.7442942
]
],
[
[
23.5923459,
46.7442942
],
[
23.5924563,
46.7448926
],
[
23.5924822,
46.7450328
],
[
23.5925151,
46.7452109
],
[
23.5926764,
46.7460219
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/7932712",
"name": "Strada Avram Iancu",
"highway": "secondary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5872738,
46.7663182
],
[
23.588808,
46.766313
],
[
23.5893124,
46.7662934
],
[
23.5902425,
46.7662911
]
],
[
[
23.5902425,
46.7662911
],
[
23.5910089,
46.7663288
],
[
23.595619,
46.7672901
],
[
23.5974516,
46.7676667
]
],
[
[
23.5974516,
46.7676667
],
[
23.5975887,
46.7677025
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/7933104",
"name": "Strada Mihail Kogălniceanu",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5902081,
46.767257
],
[
23.5911826,
46.7673348
],
[
23.5918607,
46.7674289
],
[
23.5923257,
46.7674936
]
],
[
[
23.5941084,
46.7678626
],
[
23.5942077,
46.767846
],
[
23.5952993,
46.7680555
],
[
23.5953307,
46.7681033
]
],
[
[
23.5923257,
46.7674936
],
[
23.5936588,
46.7677735
],
[
23.5941084,
46.7678626
],
[
23.5941862,
46.7679122
],
[
23.5952564,
46.7681198
],
[
23.5953307,
46.7681033
],
[
23.5953478,
46.7682248
],
[
23.5956412,
46.7682653
],
[
23.597159,
46.7684928
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/7933774",
"name": "Piața Lucian Blaga",
"highway": "tertiary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5857651,
46.7674044
],
[
23.5857549,
46.7673581
],
[
23.5857487,
46.767308
],
[
23.5856957,
46.7672321
],
[
23.5856156,
46.7671385
],
[
23.5855431,
46.7670459
],
[
23.5855292,
46.7670345
],
[
23.5855138,
46.7670287
]
],
[
[
23.5857651,
46.7674044
],
[
23.5858579,
46.7673189
],
[
23.5859248,
46.7672717
],
[
23.5859968,
46.7672465
],
[
23.5860524,
46.7672395
],
[
23.5865361,
46.7673494
],
[
23.5866962,
46.7674185
]
],
[
[
23.585402,
46.766845
],
[
23.5855348,
46.7668945
],
[
23.5857003,
46.7670053
],
[
23.5857683,
46.767052
],
[
23.5858917,
46.7671102
],
[
23.5861171,
46.7671772
],
[
23.5864893,
46.7672923
],
[
23.5865841,
46.7673259
],
[
23.5866962,
46.7674185
]
],
[
[
23.5866492,
46.767511
],
[
23.5865973,
46.7674627
],
[
23.5865722,
46.7674489
],
[
23.586521,
46.7674344
],
[
23.5863893,
46.7673978
],
[
23.5862303,
46.7673516
],
[
23.586092,
46.7673173
],
[
23.586055,
46.7673151
],
[
23.5860038,
46.7673203
],
[
23.5857651,
46.7674044
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/7933944",
"name": "Strada Republicii",
"highway": "secondary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5866962,
46.7674185
],
[
23.5867993,
46.7671716
],
[
23.5872738,
46.7663182
]
],
[
[
23.5872738,
46.7663182
],
[
23.5875628,
46.7651374
],
[
23.5880433,
46.7638549
],
[
23.5881491,
46.7635434
],
[
23.5883845,
46.7631488
],
[
23.588642,
46.7627666
],
[
23.5890828,
46.762544
],
[
23.5893746,
46.7624617
],
[
23.5896407,
46.7622912
],
[
23.589778,
46.7621089
],
[
23.5904217,
46.7614151
],
[
23.5909796,
46.760686
],
[
23.5913573,
46.7603215
],
[
23.5918894,
46.7600392
],
[
23.5920697,
46.759904
],
[
23.592619,
46.759316
],
[
23.5935545,
46.7579636
],
[
23.5938035,
46.7575696
],
[
23.593855,
46.7573579
],
[
23.5939993,
46.7569103
],
[
23.5943254,
46.7558353
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/7934003",
"name": "Strada Gheorghe Șincai",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.585365,
46.7689424
],
[
23.5855378,
46.7688429
],
[
23.5858871,
46.7684982
],
[
23.5862452,
46.7680534
],
[
23.5865945,
46.7676219
],
[
23.5866015,
46.7676003
],
[
23.5866492,
46.767511
],
[
23.5866962,
46.7674185
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/7976448",
"name": "Strada Cuza Vodă",
"highway": "primary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5953651,
46.7725867
],
[
23.5951248,
46.7728101
],
[
23.5949789,
46.7729276
],
[
23.5947903,
46.7730498
],
[
23.5945795,
46.773148
],
[
23.5944053,
46.7732077
]
],
[
[
23.5922374,
46.7744657
],
[
23.5921945,
46.7744069
],
[
23.5921945,
46.7743246
],
[
23.5922975,
46.7742835
]
],
[
[
23.5923526,
46.774283
],
[
23.5924005,
46.7743129
],
[
23.5924177,
46.7743834
],
[
23.5923576,
46.774454
],
[
23.5922374,
46.7744657
]
],
[
[
23.5922975,
46.7742835
],
[
23.5923526,
46.774283
]
],
[
[
23.5924861,
46.7736931
],
[
23.5924432,
46.7737919
],
[
23.5924188,
46.7740296
],
[
23.5923526,
46.774283
]
],
[
[
23.5944053,
46.7732077
],
[
23.5938445,
46.7733681
],
[
23.5934582,
46.77345
],
[
23.5930914,
46.7734984
],
[
23.5927433,
46.7735395
],
[
23.5924861,
46.7736931
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/7976486",
"name": "Piața Mihai Viteazu",
"highway": "primary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5880522,
46.7738043
],
[
23.5893538,
46.7740276
],
[
23.5900694,
46.7741503
],
[
23.5903011,
46.7741562
]
],
[
[
23.5904847,
46.7756868
],
[
23.5902319,
46.7754476
],
[
23.5897037,
46.7749478
]
],
[
[
23.5897037,
46.7749478
],
[
23.5900406,
46.774619
]
],
[
[
23.5903011,
46.7741562
],
[
23.5919747,
46.774179
],
[
23.5922975,
46.7742835
]
],
[
[
23.5897037,
46.7749478
],
[
23.5880522,
46.7738043
]
],
[
[
23.5900406,
46.774619
],
[
23.5902595,
46.7742854
],
[
23.5903011,
46.7741562
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/7976556",
"name": "Strada Dacia",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5899965,
46.7760861
],
[
23.5892474,
46.7756293
],
[
23.5884162,
46.7751225
],
[
23.5873082,
46.7747489
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/7976593",
"name": "Strada Gheorghe Barițiu",
"highway": "primary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5880522,
46.7738043
],
[
23.5870463,
46.7730677
],
[
23.5870352,
46.7730604
],
[
23.5857907,
46.7724138
],
[
23.5856249,
46.7723335
],
[
23.5843573,
46.7717201
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/10508024",
"name": "Strada Napoca",
"highway": "secondary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5866962,
46.7674185
],
[
23.587186,
46.7675916
],
[
23.5883644,
46.7680574
],
[
23.5885018,
46.7681156
],
[
23.5898365,
46.7686946
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/10511435",
"name": "Strada General Traian Moșoiu",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.6049185,
46.7707467
],
[
23.6047624,
46.7706908
],
[
23.6042217,
46.7704674
],
[
23.6037668,
46.7702558
],
[
23.6031917,
46.770003
],
[
23.601677,
46.7694753
]
],
[
[
23.601677,
46.7694753
],
[
23.5997382,
46.7688843
],
[
23.5992104,
46.7687236
],
[
23.5990863,
46.7687342
]
],
[
[
23.6076522,
46.7719029
],
[
23.6072772,
46.7716726
],
[
23.6068137,
46.7714432
],
[
23.6064704,
46.7712846
],
[
23.6061614,
46.7711729
],
[
23.6049185,
46.7707467
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/13342765",
"name": "Calea Moților",
"highway": "primary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5709045,
46.762526
],
[
23.5718483,
46.7628332
],
[
23.5728372,
46.7631551
]
],
[
[
23.5747999,
46.7645803
],
[
23.5753622,
46.7647946
],
[
23.5754395,
46.7648241
],
[
23.5764228,
46.7651348
]
],
[
[
23.5728372,
46.7631551
],
[
23.5731433,
46.7633573
],
[
23.5735725,
46.7637278
],
[
23.5739238,
46.7640122
],
[
23.5740445,
46.7641099
],
[
23.5743986,
46.7643639
]
],
[
[
23.5743986,
46.7643639
],
[
23.5747999,
46.7645803
]
],
[
[
23.5811477,
46.7668177
],
[
23.5814365,
46.7669264
],
[
23.5833763,
46.7678846
],
[
23.5841316,
46.7682609
],
[
23.5846329,
46.7685544
],
[
23.5849391,
46.7687435
]
],
[
[
23.5764228,
46.7651348
],
[
23.5775315,
46.7655048
],
[
23.5783981,
46.7657976
],
[
23.5794967,
46.7661738
],
[
23.5795382,
46.7661907
],
[
23.5801319,
46.7664325
],
[
23.5802379,
46.7664727
],
[
23.5811477,
46.7668177
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/13345555",
"name": "Bulevardul 21 Decembrie 1989",
"highway": "primary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.6142543,
46.7782815
],
[
23.6137967,
46.7781985
],
[
23.6117854,
46.7778368
],
[
23.6114783,
46.7777816
],
[
23.610183,
46.7775486
],
[
23.6099138,
46.7775002
],
[
23.609477,
46.7774217
],
[
23.6090225,
46.7773196
],
[
23.6081435,
46.7771306
],
[
23.6080426,
46.7771087
],
[
23.6079582,
46.7770904
],
[
23.6076149,
46.7770022
],
[
23.60716,
46.7768612
],
[
23.6070236,
46.7768253
],
[
23.6050902,
46.7759841
]
],
[
[
23.5953651,
46.7725867
],
[
23.5949352,
46.7724284
],
[
23.593064,
46.77191
],
[
23.5922373,
46.7716726
],
[
23.5918256,
46.7715619
],
[
23.5912325,
46.7713918
],
[
23.5901803,
46.7710744
],
[
23.5900197,
46.7710038
]
],
[
[
23.6050902,
46.7759841
],
[
23.6049916,
46.7759544
],
[
23.6047113,
46.775854
],
[
23.6043477,
46.7757238
]
],
[
[
23.6050902,
46.7759841
],
[
23.6069501,
46.7764693
],
[
23.6071555,
46.7765256
],
[
23.6076368,
46.7766836
],
[
23.6080789,
46.7768522
],
[
23.6083112,
46.7769393
],
[
23.6090211,
46.7771923
],
[
23.6092912,
46.7772754
],
[
23.609425,
46.7773062
],
[
23.6095416,
46.7773359
],
[
23.6099522,
46.7774075
],
[
23.6102451,
46.7774586
],
[
23.6114938,
46.7776764
],
[
23.6118314,
46.7777353
],
[
23.6138466,
46.7780868
],
[
23.6142909,
46.778164
]
],
[
[
23.5964721,
46.7729794
],
[
23.5953651,
46.7725867
]
],
[
[
23.59951,
46.7740656
],
[
23.5973517,
46.7732939
],
[
23.5969522,
46.7731494
],
[
23.5964721,
46.7729794
]
],
[
[
23.6043477,
46.7757238
],
[
23.59951,
46.7740656
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/13347875",
"name": "Strada Memorandumului",
"highway": "primary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5884844,
46.7702499
],
[
23.5883608,
46.7701997
],
[
23.5873428,
46.7697676
],
[
23.5859728,
46.7691835
],
[
23.585365,
46.7689424
],
[
23.5849391,
46.7687435
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/23287428",
"name": "Bulevardul Nicolae Titulescu",
"highway": "secondary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.6028122,
46.768149
],
[
23.6047517,
46.7686778
],
[
23.6059488,
46.7689189
],
[
23.6065013,
46.7690192
],
[
23.6086483,
46.7692102
],
[
23.6088836,
46.7692311
]
],
[
[
23.6093566,
46.7692619
],
[
23.6096861,
46.7692814
],
[
23.6116183,
46.7693955
],
[
23.6127568,
46.7694617
],
[
23.6129308,
46.7694632
],
[
23.6157102,
46.769162
],
[
23.616258,
46.7691027
],
[
23.6176515,
46.7689517
]
],
[
[
23.6093566,
46.7692619
],
[
23.609329,
46.7693302
],
[
23.6092774,
46.7693755
],
[
23.6092245,
46.7693965
],
[
23.6091491,
46.7694163
],
[
23.6090938,
46.7694149
],
[
23.6090654,
46.7694142
],
[
23.6089872,
46.7693924
],
[
23.6089252,
46.7693538
],
[
23.6088869,
46.7693046
],
[
23.6088836,
46.7692311
]
],
[
[
23.6028122,
46.768149
],
[
23.6019511,
46.7679118
],
[
23.6016066,
46.7678169
]
],
[
[
23.6185958,
46.7688093
],
[
23.6186308,
46.7687075
],
[
23.6187252,
46.7686252
],
[
23.6188502,
46.7685859
],
[
23.6190092,
46.7686183
],
[
23.6191382,
46.7686927
]
],
[
[
23.6191382,
46.7686927
],
[
23.6191449,
46.7687877
],
[
23.6190311,
46.7688851
],
[
23.6190077,
46.7689703
],
[
23.6188601,
46.7689881
],
[
23.618811,
46.7689206
],
[
23.6187072,
46.7688745
],
[
23.6185958,
46.7688093
]
],
[
[
23.6088836,
46.7692311
],
[
23.6089156,
46.7691543
],
[
23.6089656,
46.7691083
],
[
23.6090415,
46.769075
],
[
23.6091235,
46.7690632
],
[
23.6092314,
46.7690803
],
[
23.6093097,
46.7691189
],
[
23.6093607,
46.7691939
],
[
23.6093566,
46.7692619
]
],
[
[
23.6176515,
46.7689517
],
[
23.6185958,
46.7688093
]
],
[
[
23.6016066,
46.7678169
],
[
23.6011676,
46.7677037
]
],
[
[
23.6011676,
46.7677037
],
[
23.6002662,
46.767489
],
[
23.6000749,
46.7674989
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/23784852",
"name": "Strada Andrei Mureșanu",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.6000749,
46.7674989
],
[
23.6003669,
46.7671608
],
[
23.6009957,
46.766274
]
],
[
[
23.6009957,
46.766274
],
[
23.6017642,
46.7652306
],
[
23.6028751,
46.7637465
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/23893728",
"name": "Strada Inocențiu Micu Klein",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5901605,
46.7676587
],
[
23.589798,
46.7676197
],
[
23.5886732,
46.7673842
]
],
[
[
23.5886732,
46.7673842
],
[
23.5873988,
46.7671379
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/23893736",
"name": "Strada Universității",
"highway": "secondary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5902425,
46.7662911
],
[
23.590213,
46.7667164
],
[
23.5902081,
46.767257
],
[
23.5901605,
46.7676587
],
[
23.5901409,
46.7678916
],
[
23.5898365,
46.7686946
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/23893754",
"name": "Strada Ion I. C. Brătianu",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5965957,
46.769455
],
[
23.595251,
46.7691186
],
[
23.5942107,
46.7689277
],
[
23.5932207,
46.7686725
],
[
23.591924,
46.7682797
],
[
23.5901409,
46.7678916
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/23893810",
"name": "Bulevardul Eroilor",
"highway": "secondary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5909419,
46.7690779
],
[
23.5909868,
46.7690909
],
[
23.5925865,
46.7695638
],
[
23.5959619,
46.770451
],
[
23.5964993,
46.7706133
],
[
23.5965359,
46.7706246
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/23893843",
"name": "Strada Matei Corvin",
"highway": "pedestrian"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5877247,
46.7709721
],
[
23.5878902,
46.7707379
],
[
23.5883608,
46.7701997
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/23893849",
"name": "Strada Émile Zola",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5894156,
46.7721093
],
[
23.5883872,
46.7718434
],
[
23.5877587,
46.7717369
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/23893975",
"name": "Strada Horea",
"highway": "primary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5880522,
46.7738043
],
[
23.5877472,
46.7741298
]
],
[
[
23.5873082,
46.7747489
],
[
23.5874744,
46.7744928
]
],
[
[
23.5875739,
46.7841307
],
[
23.5875633,
46.7838797
],
[
23.5875138,
46.7827084
]
],
[
[
23.5875138,
46.7827084
],
[
23.5874452,
46.7816916
],
[
23.5873422,
46.7805984
],
[
23.587329,
46.7805137
],
[
23.5872215,
46.7791197
],
[
23.587202,
46.7781076
],
[
23.5871998,
46.7779968
],
[
23.5871877,
46.7776301
],
[
23.5871619,
46.7775067
],
[
23.5871453,
46.7771153
],
[
23.5871287,
46.7767227
],
[
23.5871351,
46.7766524
],
[
23.5872161,
46.7757649
],
[
23.5873082,
46.7747489
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/23893983",
"name": "Podul Horea",
"highway": "primary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5877472,
46.7741298
],
[
23.5874744,
46.7744928
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/24283514",
"name": "Strada General Dragalina",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5820966,
46.7725187
],
[
23.5819236,
46.7724618
],
[
23.5816161,
46.7723602
],
[
23.5811052,
46.7724148
],
[
23.5807952,
46.7724319
],
[
23.5804757,
46.7724302
],
[
23.5798982,
46.7723358
],
[
23.5790621,
46.7721363
],
[
23.5777577,
46.7719563
],
[
23.5775275,
46.7719506
],
[
23.5773465,
46.7719262
]
],
[
[
23.5858684,
46.7738134
],
[
23.585525,
46.7736194
],
[
23.5849242,
46.7733843
],
[
23.5843835,
46.7732079
],
[
23.5843677,
46.7732043
],
[
23.5837762,
46.7730714
],
[
23.5827355,
46.7728376
],
[
23.5826667,
46.7728073
],
[
23.582375,
46.7726788
],
[
23.5822264,
46.7725942
],
[
23.5821188,
46.7725329
],
[
23.5820966,
46.7725187
]
],
[
[
23.5858684,
46.7738134
],
[
23.5865033,
46.7742691
]
],
[
[
23.5865033,
46.7742691
],
[
23.5873082,
46.7747489
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/24283666",
"name": "Piața Unirii",
"highway": "secondary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5898365,
46.7686946
],
[
23.5909419,
46.7690779
]
],
[
[
23.5884844,
46.7702499
],
[
23.5884729,
46.770252
],
[
23.588508,
46.7702099
],
[
23.5885863,
46.770112
],
[
23.5892391,
46.7692908
],
[
23.5896425,
46.7688145
],
[
23.5898365,
46.7686946
]
],
[
[
23.5900197,
46.7710038
],
[
23.5898316,
46.770861
],
[
23.5896159,
46.7707492
],
[
23.5884844,
46.7702499
]
],
[
[
23.5909419,
46.7690779
],
[
23.5903906,
46.7700372
],
[
23.5900651,
46.770523
]
],
[
[
23.5900651,
46.770523
],
[
23.5899429,
46.7706975
],
[
23.5898316,
46.770861
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/25717208",
"name": "Strada Paris",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.6045841,
46.7857697
],
[
23.6039931,
46.785375
],
[
23.6025021,
46.7843898
],
[
23.6022603,
46.7842487
],
[
23.6021557,
46.7841642
],
[
23.6020062,
46.7840625
],
[
23.600999,
46.7834278
],
[
23.6003936,
46.7830654
],
[
23.6001189,
46.7828068
],
[
23.5996211,
46.7822837
],
[
23.5995181,
46.7821485
],
[
23.5994708,
46.7817481
],
[
23.5994838,
46.7810612
],
[
23.5992301,
46.7803127
]
],
[
[
23.5986341,
46.7753839
],
[
23.5986529,
46.7753596
]
],
[
[
23.5992301,
46.7803127
],
[
23.5984782,
46.7786161
],
[
23.5983618,
46.7783693
],
[
23.5980066,
46.7777235
],
[
23.5978634,
46.7774169
],
[
23.5978202,
46.7772199
],
[
23.5978138,
46.7770143
],
[
23.5978312,
46.7767413
],
[
23.5978976,
46.7764763
],
[
23.5980612,
46.7760744
],
[
23.5982387,
46.7758611
],
[
23.598483,
46.7755843
],
[
23.5986341,
46.7753839
]
],
[
[
23.5987145,
46.7752731
],
[
23.5988864,
46.7750494
],
[
23.59951,
46.7740656
]
],
[
[
23.5986529,
46.7753596
],
[
23.5987145,
46.7752731
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/26598924",
"name": "Strada Ploiești",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5923576,
46.774454
],
[
23.5933686,
46.7748403
],
[
23.5935746,
46.7749285
],
[
23.5943557,
46.7755869
]
],
[
[
23.5943557,
46.7755869
],
[
23.5951837,
46.7763295
],
[
23.5956042,
46.7766176
],
[
23.5962737,
46.7768997
],
[
23.5980066,
46.7777235
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/26598953",
"name": "Strada Argeș",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5956626,
46.7740549
],
[
23.5951359,
46.773891
],
[
23.5945817,
46.773832
],
[
23.5928537,
46.7739586
],
[
23.5924188,
46.7740296
]
],
[
[
23.5956626,
46.7740549
],
[
23.5969587,
46.7746955
],
[
23.5970702,
46.7747426
],
[
23.5980573,
46.7750482
],
[
23.5986341,
46.7753839
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/26615442",
"name": "Strada Aviator Bădescu",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.596212,
46.7659028
],
[
23.5962746,
46.7659814
],
[
23.5963816,
46.7660884
],
[
23.5964668,
46.766178
],
[
23.5966086,
46.7662434
],
[
23.5967481,
46.7662767
],
[
23.5969518,
46.7662747
],
[
23.5970952,
46.766264
],
[
23.5972647,
46.7662233
],
[
23.5973668,
46.7661117
],
[
23.5972614,
46.765978
],
[
23.59713,
46.7658607
],
[
23.5970538,
46.765785
]
],
[
[
23.595619,
46.7672901
],
[
23.596212,
46.7659028
],
[
23.5962581,
46.7657921
],
[
23.596301,
46.7656157
],
[
23.5962838,
46.7654864
],
[
23.5961723,
46.7652806
],
[
23.5960092,
46.7650983
],
[
23.5958032,
46.7648867
],
[
23.5956315,
46.7645927
],
[
23.59558,
46.7643811
],
[
23.5955457,
46.7640401
],
[
23.5968761,
46.763411
],
[
23.5977176,
46.7631681
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/26616052",
"name": "Strada Baba Novac",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5974516,
46.7676667
],
[
23.597159,
46.7684928
],
[
23.5969485,
46.7689055
],
[
23.5965957,
46.769455
],
[
23.5959619,
46.770451
]
],
[
[
23.5959619,
46.770451
],
[
23.5959002,
46.7705489
],
[
23.5958352,
46.770664
],
[
23.5954976,
46.7714434
],
[
23.5949767,
46.7723433
],
[
23.5949352,
46.7724284
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/26616261",
"name": "Strada Episcop Ioan Bob",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5866405,
46.7683089
],
[
23.5873465,
46.7685652
],
[
23.5880697,
46.7687798
],
[
23.5889157,
46.7691473
]
],
[
[
23.5889157,
46.7691473
],
[
23.5892391,
46.7692908
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/26616322",
"name": "Strada Fortăreței",
"highway": "pedestrian"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5883644,
46.7680574
],
[
23.5886732,
46.7673842
]
],
[
[
23.5886732,
46.7673842
],
[
23.5888468,
46.7667253
]
],
[
[
23.5887945,
46.7667173
],
[
23.588808,
46.766313
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/27173012",
"name": "Strada Frédéric Joliot-Curie",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5924861,
46.7736931
],
[
23.592479,
46.7735766
],
[
23.592455,
46.7732772
],
[
23.5926634,
46.7726103
],
[
23.5928464,
46.7722893
],
[
23.593064,
46.77191
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/27173072",
"name": "Strada Potaissa",
"highway": "pedestrian"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.587186,
46.7675916
],
[
23.5873988,
46.7671379
],
[
23.5875857,
46.7667113
],
[
23.5887945,
46.7667173
],
[
23.5888468,
46.7667253
],
[
23.590213,
46.7667164
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/31584504",
"name": "Strada Tipografiei",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5886612,
46.7729548
],
[
23.5893485,
46.7731968
],
[
23.589842,
46.7733248
],
[
23.5899674,
46.7733485
],
[
23.5907971,
46.7733316
],
[
23.5917957,
46.7732893
],
[
23.592455,
46.7732772
]
],
[
[
23.592455,
46.7732772
],
[
23.5932865,
46.7732601
],
[
23.5936927,
46.7732418
],
[
23.5940231,
46.7731823
],
[
23.5943273,
46.7730658
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/31620337",
"name": "Strada Iașilor",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5904847,
46.7756868
],
[
23.5908089,
46.7759581
],
[
23.5909482,
46.7760747
],
[
23.5919267,
46.7766919
],
[
23.5923301,
46.7768977
],
[
23.5933573,
46.7772809
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/31620416",
"name": "Strada Croitorilor",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5921963,
46.77451
],
[
23.5922031,
46.7746009
],
[
23.5922099,
46.7747169
],
[
23.5922528,
46.7748991
],
[
23.5923644,
46.7750931
],
[
23.5927163,
46.7755692
],
[
23.5930425,
46.7758337
],
[
23.5932227,
46.7760101
],
[
23.593549,
46.7766935
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/31622052",
"name": "Strada Nicolae Bălcescu",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5980612,
46.7760744
],
[
23.5971663,
46.7759416
],
[
23.5968316,
46.7758181
],
[
23.5963939,
46.7755477
],
[
23.595733,
46.7750246
],
[
23.5951037,
46.7747003
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/31623244",
"name": "Strada Voltaire",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.6021748,
46.7688403
],
[
23.5996666,
46.7680433
],
[
23.5992104,
46.7687236
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/31650166",
"name": "Strada Bisericii Ortodoxe",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5923618,
46.7613757
],
[
23.5916439,
46.7612532
],
[
23.5912405,
46.7618353
],
[
23.5911259,
46.7620813
],
[
23.5903401,
46.7636722
],
[
23.5901609,
46.7639622
],
[
23.5899792,
46.7642061
]
],
[
[
23.5899792,
46.7642061
],
[
23.5898267,
46.7644329
],
[
23.5896204,
46.7647905
],
[
23.5894695,
46.765181
],
[
23.5893976,
46.7653723
],
[
23.5893775,
46.7654257
],
[
23.5893407,
46.7656278
],
[
23.5893124,
46.7662934
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/32010580",
"name": "Strada Constanța",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5964721,
46.7729794
],
[
23.5956626,
46.7740549
]
],
[
[
23.5956626,
46.7740549
],
[
23.5951037,
46.7747003
],
[
23.5943557,
46.7755869
],
[
23.5939181,
46.7761351
],
[
23.593549,
46.7766935
],
[
23.5934031,
46.777058
],
[
23.5933573,
46.7772809
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/37146434",
"name": "Piața Timotei Cipariu",
"highway": "primary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.6000749,
46.7674989
],
[
23.5999528,
46.7675424
],
[
23.5998287,
46.767608
],
[
23.5997597,
46.7676591
],
[
23.5996841,
46.7677372
]
],
[
[
23.5996841,
46.7677372
],
[
23.5992835,
46.7683903
],
[
23.5992371,
46.7684713
],
[
23.5990863,
46.7687342
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/43707023",
"name": "Strada Dávid Ferenc",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5903011,
46.7741562
],
[
23.5906516,
46.7736319
],
[
23.5907971,
46.7733316
]
],
[
[
23.5913783,
46.7722627
],
[
23.5918256,
46.7715619
]
],
[
[
23.5913783,
46.7722627
],
[
23.5911714,
46.7725249
],
[
23.5909769,
46.772868
],
[
23.5907971,
46.7733316
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/43707055",
"name": "Strada Brassai Sámuel",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5926634,
46.7726103
],
[
23.5943273,
46.7730658
],
[
23.5944053,
46.7732077
]
],
[
[
23.5926634,
46.7726103
],
[
23.5913783,
46.7722627
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/43707065",
"name": "Strada Cotită",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5899674,
46.7733485
],
[
23.590445,
46.7725806
],
[
23.5905791,
46.772324
],
[
23.5907238,
46.7720727
],
[
23.5913783,
46.7722627
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/43707295",
"name": "Strada Andrei Șaguna",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5884077,
46.7732886
],
[
23.5891664,
46.773472
],
[
23.5898748,
46.7735546
],
[
23.5906516,
46.7736319
],
[
23.5915867,
46.773758
],
[
23.5924432,
46.7737919
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/46233529",
"name": "Strada I. C. Brătianu",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5971418,
46.7696258
],
[
23.5965957,
46.769455
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/46240381",
"name": "Strada Iuliu Maniu",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5903906,
46.7700372
],
[
23.591894,
46.770503
],
[
23.5954976,
46.7714434
],
[
23.5960732,
46.771532
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/46331380",
"name": "Strada Samuil Micu",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5859728,
46.7691835
],
[
23.586007,
46.7691432
],
[
23.5866405,
46.7683089
],
[
23.587186,
46.7675916
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/55556740",
"name": "Strada Regele Ferdinand",
"highway": "primary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5900197,
46.7710038
],
[
23.5899656,
46.7710939
],
[
23.5898799,
46.7712375
],
[
23.5894841,
46.7719874
],
[
23.5894156,
46.7721093
],
[
23.5890808,
46.77258
],
[
23.5886612,
46.7729548
],
[
23.5884077,
46.7732886
]
],
[
[
23.5884077,
46.7732886
],
[
23.5880522,
46.7738043
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/108489923",
"name": "Strada Petru Maior",
"highway": "secondary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5857651,
46.7674044
],
[
23.5857561,
46.7674199
],
[
23.5857515,
46.7674276
],
[
23.5849391,
46.7687435
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/173140879",
"name": "Strada Clinicilor",
"highway": "secondary"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5747999,
46.7645803
],
[
23.5756688,
46.7646336
],
[
23.5765697,
46.7647589
],
[
23.5782821,
46.7648732
],
[
23.5818857,
46.7657382
],
[
23.5832715,
46.7661013
],
[
23.5852463,
46.7667723
],
[
23.5853047,
46.7668
],
[
23.585402,
46.766845
],
[
23.585515,
46.7669947
],
[
23.5855138,
46.7670287
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/177921036",
"name": "Strada Paul Chinezu",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5855931,
46.771201
],
[
23.5858578,
46.7707586
],
[
23.5860193,
46.7703085
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/177921037",
"name": "Strada Sextil Pușcariu",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5878651,
46.7710659
],
[
23.5885918,
46.7713339
],
[
23.5883872,
46.7718434
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "way/177921854",
"name": "Strada Octavian Petrovici",
"highway": "residential"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
23.5886612,
46.7729548
],
[
23.5881593,
46.772766
],
[
23.5877468,
46.7726173
],
[
23.5874934,
46.7725151
],
[
23.5874048,
46.7724688
],
[
23.586937,
46.772274
],
[
23.5865855,
46.7721252
],
[
23.5862552,
46.7719541
],
[
23.586093,
46.7719008
],
[
23.5858832,
46.7718181
],
[
23.5856169,
46.7717159
],
[
23.5855101,
46.7716688
],
[
23.5854576,
46.7716344
],
[
23.5854319,
46.7715972
],
[
23.5854276,
46.7715471
],
[
23.5854596,
46.771458
],
[
23.585503,
46.7713844
],
[
23.5855931,
46.771201
]
]
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment