Link to metro map beside each city name

This commit is contained in:
Alexey Zakharenkov 2020-08-22 02:17:13 +03:00 committed by Rostislav
parent 1ec900e4fd
commit 691b9cd60d
2 changed files with 52 additions and 18 deletions

View file

@ -37,6 +37,8 @@ var hint = L.marker(initialLocation, {opacity: 0})
.bindPopup('Choose a city from the list at the top-right corner!')
.openPopup();
// Array of slugified city names
var cityNames = [];
// Inspired by http://ahalota.github.io/Leaflet.CountrySelect
L.CitySelect = L.Control.extend({
@ -67,12 +69,23 @@ L.CitySelect = L.Control.extend({
for (var i = 0; i < cities.length; i++) {
// Remove country name which follows last comma and doesn't contain commas itself
var last_comma_index = cities[i].lastIndexOf(',');
var city_name = cities[i].substring(0, last_comma_index);
content += '<option value="' + city_name + '">' + cities[i] + '</option>';
var lastCommaIndex = cities[i].lastIndexOf(',');
var cityName = cities[i].substring(0, lastCommaIndex);
cityName = slugify(cityName);
content += '<option value="' + cityName + '">' + cities[i] + '</option>';
cityNames.push(cityName);
}
that.select.innerHTML = content;
var hash = window.location.hash;
if (hash && hash[0] === '#')
hash = hash.substring(1);
var cityName = decodeURI(hash);
if (cityName)
chooseCity(cityName);
window.location.hash = '';
}
);
@ -101,20 +114,31 @@ L.citySelect = function(id, options) {
var selector = L.citySelect({position: 'topright'}).addTo(map);
selector.on('change', function(e) {
if (e.cityName === selector.options.title)
chooseCity(e.cityName);
});
function chooseCity(cityName)
{
var index = cityNames.indexOf(cityName);
if (index === -1) {
setCityLayer(null);
return;
}
// This is needed if the function was triggered not by list item selection
// but by city name in url hash
selector.select.value = cityName;
if (hint !== null) {
map.removeLayer(hint);
hint = null;
}
var cityName = e.cityName;
ajax(slugify(cityName) + '.geojson',
function (responseText) {
ajax(cityName + '.geojson',
function (responseText) {
var json = JSON.parse(responseText);
var newCity = L.geoJSON(json, {
var cityLayer = L.geoJSON(json, {
style: function(feature) {
if ('stroke' in feature.properties)
return {color: feature.properties.stroke};
@ -129,16 +153,21 @@ selector.on('change', function(e) {
}
});
if (map.previousCity !== undefined) {
map.removeLayer(map.previousCity);
}
map.previousCity = newCity;
map.addLayer(newCity);
map.fitBounds(newCity.getBounds());
setCityLayer(cityLayer);
},
function (statusText, status) {
alert("Cannot fetch city data for " + cityName + ".\nError code: " + status);
}
);
});
}
function setCityLayer(cityLayer) {
if (map.cityLayer) {
map.removeLayer(map.cityLayer);
}
if (cityLayer) {
map.addLayer(cityLayer);
map.fitBounds(cityLayer.getBounds());
}
map.cityLayer = cityLayer;
}

View file

@ -138,7 +138,12 @@ COUNTRY_HEADER = '''
COUNTRY_CITY = '''
<tr id="{slug}">
<td class="bold color{good_cities}">{city}{?yaml} <a href="{yaml}" class="hlink">Y</a>{end}{?json} <a href="{json}" class="hlink">J</a>{end}</td>
<td class="bold color{good_cities}">
{city}
{?yaml}<a href="{yaml}" class="hlink" title="Download YAML">Y</a>{end}
{?json}<a href="{json}" class="hlink" title="Download GeoJSON">J</a>{end}
{?json}<a href="render.html#{slug}" class="hlink" title="View map" target="_blank">M</a>{end}
</td>
{?subways}
<td class="color{=subwayl}">sub: {subwayl_found} / {subwayl_expected}</td>
<td class="color{=lightrl}">lr: {lightrl_found} / {lightrl_expected}</td>