We'd love to hear from you!
We are happy to assist you 24X7, please drop your enquiry and our sales representative will contact you soon.
var markers = [
{
"title": 'India',
"lat": '28.6195815',
"lng": '77.3776146',
"description": 'A-89, Sector 63, Noida, Uttar Pradesh - 201301, India'
},
{
"title": 'Kenya',
"lat": '-1.2692192',
"lng": '36.80787',
"description": 'Plot 61 Westlands Road, Near Harleys Bld, PO Box: 13669-00800, Westlands, Nairobi, Kenya'
},
{
"title": 'Johannesburg',
"lat": '-26.0609214',
"lng": '27.9544022',
"description": '2nd Floor, D212, 218 Olievenhout, Avenue Northriding, Randburg,2162, South Africa'
},
{
"title": 'Ethiopia',
"lat": '8.9963788',
"lng": '38.7967739',
"description": 'Net & Com PLC, Addis Ababa, Ethiopia'
},
{
"title": 'USA',
"lat": '39.022468',
"lng": '-77.1369143',
"description": '6701 Democracy Blvd Suite 300, Bethesda, MD 20817'
},
{
"title": 'Philippines',
"lat": '14.5741814',
"lng": '121.0491529',
"description": 'Madison Street, Barangka Ilaya, Belville, Mandaluyong City, Philippines'
}
];
window.onload = function () {
LoadMap();
}
function LoadMap() {
var mapOptions = {
//center: new google.maps.LatLng(markers[0].lat, markers[0].lng),
center: new google.maps.LatLng(markers[3].lat, markers[3].lng),
zoom: 3,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("dvMap"), mapOptions);
//Create and open InfoWindow.
var infoWindow = new google.maps.InfoWindow();
for (var i = 0; i < markers.length; i++) {
var data = markers[i];
var myLatlng = new google.maps.LatLng(data.lat, data.lng);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: data.title
});
//Attach click event to the marker.
(function (marker, data) {
google.maps.event.addListener(marker, "click", function (e) {
//Wrap the content inside an HTML DIV in order to set height and width of InfoWindow.
infoWindow.setContent('');
infoWindow.open(map, marker);
});
})(marker, data);
}
}