diff --git a/client/templates/locations/locations_page.js b/client/templates/locations/locations_page.js index 7467654..0626d36 100644 --- a/client/templates/locations/locations_page.js +++ b/client/templates/locations/locations_page.js @@ -70,7 +70,8 @@ Template.locationsPage.onCreated(function() { var marker = new google.maps.Marker({ position: latLng, map: map, - title: 'Hello World!', + title: location.title, + icon: 'logo-icon-marker.png', id: location._id }); markers[location._id] = marker; diff --git a/public/logo-icon-marker.png b/public/logo-icon-marker.png new file mode 100755 index 0000000..250a779 Binary files /dev/null and b/public/logo-icon-marker.png differ