This commit is contained in:
Ilya Zverev 2015-12-18 20:45:24 +03:00
parent e85cea64f5
commit 3225251039

View file

@ -115,7 +115,7 @@ function updateBorders() {
'xmax': b.getEast(),
'ymin': b.getSouth(),
'ymax': b.getNorth(),
'points': map.getZoom() >= 8
'points': (map.getZoom() < 10 ? 1 : 0)
},
success: processCrossing,
dataType: 'json'
@ -783,7 +783,8 @@ var crossSelected = null, fcPreview = null;
var selectedCrossings = {};
function crossingUpdateColor(layer) {
layer.setStyle({ color: selectedCrossings[layer.crossId] ? 'red' : 'blue' });
if( 'setStyle' in layer )
layer.setStyle({ color: selectedCrossings[layer.crossId] ? 'red' : 'blue' });
}
function crossingClicked(e) {