diff --git a/assets/js/sections/wajamap.js b/assets/js/sections/wajamap.js index 172a916f..a89563d4 100644 --- a/assets/js/sections/wajamap.js +++ b/assets/js/sections/wajamap.js @@ -150,7 +150,7 @@ info.onAdd = function (map) { // method that we will use to update the control based on feature properties passed info.update = function (props) { this._div.innerHTML = '

Prefecture

' + (props ? - '' + props.name + '
' : 'Hover over a prefecture'); + '' + props.id.substring(3,5) + ' - ' + props.name + '
' : 'Hover over a prefecture'); }; info.addTo(map);