name: I18n.t("javascripts.map.base.transport_map")
}),
new L.OSM.MapQuestOpen({
- attribution: copyright + ". Tiles courtesy of <a href='http://www.mapquest.com/' target='_blank'>MapQuest</a> <img src='http://developer.mapquest.com/content/osm/mq_logo.png'>",
+ attribution: copyright + ". Tiles courtesy of <a href='http://www.mapquest.com/' target='_blank'>MapQuest</a> <img src='https://developer.mapquest.com/content/osm/mq_logo.png'>",
code: "Q",
keyid: "mapquest",
name: I18n.t("javascripts.map.base.mapquest")
}
var params = {};
+ var layers = this.getLayersCode().replace('M', '');
+
+ if (layers) {
+ params.layers = layers;
+ }
if (marker && this.hasLayer(marker)) {
params.m = '';
return str;
},
- addObject: function(object) {
+ addObject: function(object, callback) {
var objectStyle = {
color: "#FF6200",
weight: 4,
map._objectLayer.addData(xml);
map._objectLayer.addTo(map);
- if (!window.location.hash) {
- var bounds = map._objectLayer.getBounds();
- if (bounds.isValid()) {
- OSM.router.moveListenerOff();
- map.once('moveend', OSM.router.moveListenerOn);
- map.fitBounds(bounds);
- }
- }
+ if (callback) callback(map._objectLayer.getBounds());
}
});
},