Only record a visible object if it exists

Fixes #1430
This commit is contained in:
Tom Hughes 2017-02-08 09:53:30 +00:00
parent 7606d1369a
commit 579e323d09

View file

@ -211,16 +211,15 @@ L.OSM.Map = L.Map.extend({
clickable: false
};
this._object = object;
if (this._objectLoader) this._objectLoader.abort();
if (this._objectLayer) this.removeLayer(this._objectLayer);
this.removeObject();
var map = this;
this._objectLoader = $.ajax({
url: OSM.apiUrl(object),
dataType: "xml",
success: function (xml) {
map._object = object;
map._objectLayer = new L.OSM.DataLayer(null, {
styles: {
node: objectStyle,