commit property name changes back to client side state
This commit is contained in:
parent
3307f42023
commit
efbe97fae4
|
@ -80,12 +80,15 @@ var API_BASE = "/1.0/",
|
||||||
stopsWithGeom.push(v);
|
stopsWithGeom.push(v);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
stopsGeojson.features = stopsWithGeom;
|
stopsGeojson.features = stopsWithGeom;
|
||||||
var currFeatures = jsonLayer.features;
|
var currFeatures = jsonLayer.features;
|
||||||
jsonLayer.removeFeatures(currFeatures);
|
jsonLayer.removeFeatures(currFeatures);
|
||||||
jsonLayer.addFeatures(geojson_format.read(stopsGeojson));
|
if (stopsWithGeom.length !== 0) {
|
||||||
var maxExtent = jsonLayer.getDataExtent();
|
jsonLayer.addFeatures(geojson_format.read(stopsGeojson));
|
||||||
map.zoomToExtent(maxExtent);
|
var maxExtent = jsonLayer.getDataExtent();
|
||||||
|
map.zoomToExtent(maxExtent);
|
||||||
|
}
|
||||||
$target.append($stopsList);
|
$target.append($stopsList);
|
||||||
// $target.data("hasList", true);
|
// $target.data("hasList", true);
|
||||||
$target.data("loading", false);
|
$target.data("loading", false);
|
||||||
|
@ -192,6 +195,8 @@ var API_BASE = "/1.0/",
|
||||||
var $lon_input = $('<input />').attr("type", "hidden").val(lon).attr("id", "lon").appendTo($form);
|
var $lon_input = $('<input />').attr("type", "hidden").val(lon).attr("id", "lon").appendTo($form);
|
||||||
$form.submit(function(e) {
|
$form.submit(function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
var oldProps = $('.selectedStopItem').data("properties");
|
||||||
|
|
||||||
var geojson = {
|
var geojson = {
|
||||||
'type': 'Feature',
|
'type': 'Feature',
|
||||||
'properties': {
|
'properties': {
|
||||||
|
@ -204,6 +209,8 @@ var API_BASE = "/1.0/",
|
||||||
'coordinates': [parseFloat($lon_input.val()), parseFloat($lat_input.val())]
|
'coordinates': [parseFloat($lon_input.val()), parseFloat($lat_input.val())]
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
var props = $.extend(oldProps, geojson.properties);
|
||||||
|
$('.selectedStopItem').data("properties", props);
|
||||||
var geojsonString = JSON.stringify(geojson);
|
var geojsonString = JSON.stringify(geojson);
|
||||||
//console.log(geojsonString);
|
//console.log(geojsonString);
|
||||||
var url = API_BASE + "stop/" + stop.slug + "?srid=3857";
|
var url = API_BASE + "stop/" + stop.slug + "?srid=3857";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user