Remove map data size warning (#592)
This commit is contained in:
parent
07976676de
commit
944f3ebb67
3 changed files with 0 additions and 16 deletions
|
@ -26,19 +26,6 @@ function initializeBrowse(map) {
|
||||||
onSelect(e.layer);
|
onSelect(e.layer);
|
||||||
});
|
});
|
||||||
|
|
||||||
dataLayer.on('statechange', function (e) {
|
|
||||||
if (e.checked) {
|
|
||||||
if (e.disabled) {
|
|
||||||
var size = map.getBounds().getSize();
|
|
||||||
$('#browse_status').html(
|
|
||||||
$("<p class='warning'></p>")
|
|
||||||
.text(I18n.t("browse.start_rjs.unable_to_load_size", { max_bbox_size: OSM.MAX_REQUEST_AREA, bbox_size: size.toFixed(2) })));
|
|
||||||
} else {
|
|
||||||
$('#browse_status').empty();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
map.on('layeradd', function (e) {
|
map.on('layeradd', function (e) {
|
||||||
if (e.layer === dataLayer) {
|
if (e.layer === dataLayer) {
|
||||||
map.on("moveend", updateData);
|
map.on("moveend", updateData);
|
||||||
|
|
|
@ -168,8 +168,6 @@ L.OSM.layers = function(options) {
|
||||||
.trigger('change');
|
.trigger('change');
|
||||||
}
|
}
|
||||||
|
|
||||||
layer.fire('statechange', {disabled: disabled, checked: checked});
|
|
||||||
|
|
||||||
$(item).attr('class', disabled ? 'disabled' : '');
|
$(item).attr('class', disabled ? 'disabled' : '');
|
||||||
item.attr('data-original-title', disabled ?
|
item.attr('data-original-title', disabled ?
|
||||||
I18n.t('javascripts.site.' + refName + '_zoom_in_tooltip') : '');
|
I18n.t('javascripts.site.' + refName + '_zoom_in_tooltip') : '');
|
||||||
|
|
|
@ -173,7 +173,6 @@ en:
|
||||||
start_rjs:
|
start_rjs:
|
||||||
feature_warning: "Loading %{num_features} features, which may make your browser slow or unresponsive. Are sure you want to display this data?"
|
feature_warning: "Loading %{num_features} features, which may make your browser slow or unresponsive. Are sure you want to display this data?"
|
||||||
load_data: "Load Data"
|
load_data: "Load Data"
|
||||||
unable_to_load_size: "Unable to load map data, too large of an area (%{bbox_size}). Area must be smaller than %{max_bbox_size} square degrees."
|
|
||||||
loading: "Loading..."
|
loading: "Loading..."
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: "Tags"
|
tags: "Tags"
|
||||||
|
|
Loading…
Add table
Reference in a new issue