commit
e85cea64f5
3 changed files with 9 additions and 7 deletions
|
@ -122,10 +122,11 @@ def query_crossing():
|
|||
ymin = request.args.get('ymin')
|
||||
ymax = request.args.get('ymax')
|
||||
region = request.args.get('region')
|
||||
points = request.args.get('points') == '1'
|
||||
cur = g.conn.cursor()
|
||||
sql = """SELECT id, ST_AsGeoJSON(line, 7) as geometry, region, processed FROM {table}
|
||||
sql = """SELECT id, ST_AsGeoJSON({line}, 7) as geometry, region, processed FROM {table}
|
||||
WHERE line && ST_MakeBox2D(ST_Point(%s, %s), ST_Point(%s, %s)) and processed = 0 {reg};
|
||||
""".format(table=config.CROSSING_TABLE, reg='and region = %s' if region else '')
|
||||
""".format(table=config.CROSSING_TABLE, reg='and region = %s' if region else '', line='line' if not points else 'ST_Centroid(line)')
|
||||
params = [xmin, ymin, xmax, ymax]
|
||||
if region:
|
||||
params.append(region)
|
||||
|
|
|
@ -108,13 +108,14 @@ function updateBorders() {
|
|||
dataType: 'json'
|
||||
});
|
||||
|
||||
if (map.getZoom() >= 7) {
|
||||
if (map.getZoom() >= 4) {
|
||||
$.ajax(getServer('crossing'), {
|
||||
data: {
|
||||
'xmin': b.getWest(),
|
||||
'xmax': b.getEast(),
|
||||
'ymin': b.getSouth(),
|
||||
'ymax': b.getNorth()
|
||||
'ymax': b.getNorth(),
|
||||
'points': map.getZoom() >= 8
|
||||
},
|
||||
success: processCrossing,
|
||||
dataType: 'json'
|
||||
|
@ -148,7 +149,7 @@ function processRouting(data) {
|
|||
for( var f = 0; f < data.features.length; f++ ) {
|
||||
marker = L.marker([data.features[f]["lat"], data.features[f]["lon"]]);
|
||||
marker.bindPopup(routingTypes[data.features[f]["type"]], {showOnMouseOver: true});
|
||||
routingGroup.addLayer(marker);
|
||||
routingGroup.addLayer(marker);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#osm_actions { display: none; margin-top: 1em; }
|
||||
#info { margin-top: 2em; }
|
||||
#b_delete, #b_clear, .back_del { font-size: 8pt; }
|
||||
#rename, #split, #join, #point, #divide, #backup { display: none; }
|
||||
#rename, #split, #join, #point, #divide, #backup, #fixcross { display: none; }
|
||||
.actions input[type='text'] { width: 150px; }
|
||||
#header { border-bottom: 1px solid gray; margin-bottom: 1em; padding-bottom: 1em; }
|
||||
#f_topo, #f_chars, #f_comments, #links { font-size: 10pt; }
|
||||
|
@ -161,7 +161,7 @@
|
|||
<div id="backup_list"></div>
|
||||
<button onclick="bBackupCancel()">Вернуться</button>
|
||||
</div>
|
||||
<div id="fixcross" class="action">
|
||||
<div id="fixcross" class="actions">
|
||||
Границы региона <span id="fc_sel"></span> будут поправлены, чтобы включать в себя подсвеченные красным линии.
|
||||
Кликайте на линии, чтобы изменять их статус.<br>
|
||||
<br>
|
||||
|
|
Loading…
Add table
Reference in a new issue