<img class=”vimage_class” src=”https://millvillestitchers.com/wp-content/uploads/jQuDjog5Vdg-253D.jpg” alt=””>
// Initialize and add the map
function initMap() {
// The location of the map center
var mapCenter = {
lat: 38.9072,
lng: -77.0379
};
// The map
var map = new google.maps.Map(
document.getElementById('map'), {
zoom: 12,
center: mapCenter
});
// Array of store locations with their details
var stores =[{[{
name: 'The Sewing Spot',
address: '123 Main St, City, State 12345',
phone: '(123) 456-7890',
lat: 38.9053,
lng: -77.0379,
img: 'store1.jpg'
}, {
name: 'Fabric Delight',
address: '456 Elm St, City, State 67890',
phone: '(234) 567-8901',
lat: 38.9064,
lng: -77.0209,
img: 'store2.jpg'
}, {
name: 'Stitch 'n Sew',
address: '789 Oak St, City, State 34567',
phone: '(345) 678-9012',
lat: 38.9064,
lng: -77.0446,
img: 'store3.jpg'
}];
// Add markers for each store
stores.forEach(function(store) {
var marker = new google.maps.Marker({
position: {
lat: store.lat,
lng: store.lng
},
map: map
});
var contentString =
'
'' +
'
'
' +
'
' +
'
' +
'
' +
'
';
var infowindow = new google.maps.InfoWindow({
content: contentString
});
marker.addListener('click', function() {
infowindow.open(map, marker);
});
});
}
“I’m in the market for a new sewing machine!” Great! There are plenty of sewing stores nearby that will have what you’re looking for.
“Do you have a recommendation for an affordable yet reliable sewing machine?”
Sounds like a great shopping task! Don’t forget to check out the special promotions nearby as well – you may just get the reliable machine you’re looking for at an affordable price!