$(function () {
var LocsA = [
{
lat: 40.740178,
lon: -74.190194,
title: "Chtwan",
html: [
'
',
'
Chitwan,Nepal
',
'
Chitwan, Nepal
',
'
0123456789
',
'
',
"
",
"
",
].join(""),
icon: "img/icons/map-marker-2.png",
animation: google.maps.Animation.BOUNCE,
},
{
lat: 40.733617,
lon: -74.17115,
title: "Location 2",
html: [
'',
'
Boston, New York
',
'
5816 S. Coulter Street Amarillo, TX 79119
',
'
0123456789
',
'
",
"
",
].join(""),
icon: "img/icons/map-marker-2.png",
animation: google.maps.Animation.BOUNCE,
},
{
lat: 40.743011,
lon: -74.2471,
title: "Location 3",
html: [
'',
'
Boston, New York
',
'
5816 S. Coulter Street Amarillo, TX 79119
',
'
0123456789
',
'
",
"
",
].join(""),
icon: "img/icons/map-marker-2.png",
animation: google.maps.Animation.BOUNCE,
},
];
new Maplace({
locations: LocsA,
controls_on_map: true,
map_options: {
zoom: 13,
scrollwheel: false,
stopover: true,
},
stroke_options: {
strokeColor: "#f10",
strokeOpacity: 0.8,
strokeWeight: 2,
fillColor: "#f10",
fillOpacity: 0.4,
},
}).Load();
});