9 lines
226 B
HTML
9 lines
226 B
HTML
<div class="scrollable-box">
|
|
<div class="h4" id="place-name" style="max-width: 90%;"></div>
|
|
</div>
|
|
|
|
<script>
|
|
function loadPlace(feature) {
|
|
$("#place-name").text(feature.properties.name);
|
|
}
|
|
</script> |