Skip to content

Commit

Permalink
latest
Browse files Browse the repository at this point in the history
  • Loading branch information
SanjayPrabhakaran committed Oct 28, 2024
1 parent fa4bd5d commit 650763b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions SJPv6/www/here-maps.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,10 @@ function addLocationsToPanel(locations){
for (i = 0; i < locations.length; i += 1) {
let location = locations[i];
var li = document.createElement('li'),
divLabel = document.createElement('div'),
address = location.address,
content = '<strong style="font-size: large;">' + address.label + '</strong></br>';
position = location.position;

divLabel = document.createElement('div'),
address = location.address,
content = '<strong style="font-size: large;">' + address.label + '</strong></br>';
position = location.position;
content += '<strong>houseNumber:</strong> ' + address.houseNumber + '<br/>';
content += '<strong>street:</strong> ' + address.street + '<br/>';
content += '<strong>district:</strong> ' + address.district + '<br/>';
Expand Down

0 comments on commit 650763b

Please sign in to comment.