. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 87.98.249.37 / Your IP : 216.73.216.208 [ Web Server : Microsoft-IIS/10.0 System : Windows NT NS3076740 10.0 build 17763 (Windows Server 2019) AMD64 User : IWPD_292(growel19p) ( 0) PHP Version : 8.3.12 Disable Function : NONE Domains : 0 Domains MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Inetpub/vhosts/growel.com/httpdocs/.business/chemicals/ |
Upload File : |
<!DOCTYPE html>
<html>
<head>
<title>Map with Distributors</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" />
<style>
#map {
height: 600px;
width: 100%;
}
.leaflet-control-attribution {
display: none !important;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
<script>
// Initialize Leaflet map
var map = L.map('map').setView([20.5937, 78.9629], 5); // Centered on India, zoom level 5
L.tileLayer('https://server.arcgisonline.com/ArcGIS/rest/services/Canvas/World_Light_Gray_Base/MapServer/tile/{z}/{y}/{x}', {
maxZoom: 10,
attribution: 'Tiles © Esri — Esri, DeLorme, NAVTEQ'
}).addTo(map);
var distributors = [
{ name: 'Aum Dacro Coatings', location: [28.4595, 77.0266], city: 'Gurgaon' },
{ name: 'Aum Dacro Coatings (Unit-III)', location: [13.0827, 80.2707], city: 'Chennai' },
{ name: 'Aum Dacro Coatings LLP', location: [28.4595, 77.0266], city: 'Gurgaon' },
{ name: 'Chennai Engg Coating Co. P.Ltd', location: [12.8231, 80.0453], city: 'Sriperumbdur' },
{ name: 'Deepak Fasteners Ltd (MP Unit)', location: [23.2599, 77.4126], city: 'Bhopal' },
{ name: 'G.M. Exports (India)', location: [22.3039, 70.8022], city: 'Rajkot' },
{ name: 'Haryana Industries', location: [28.4595, 77.0266], city: 'Gurgaon' },
{ name: 'Hiten Fasteners Pvt Ltd Unit III', location: [12.9716, 77.5946], city: 'Bangalore' },
{ name: 'International Industrial Springs', location: [19.2183, 72.9781], city: 'Thane' },
{ name: 'JK G-MET', location: [9.1585, 78.1466], city: 'Kariapatti' },
{ name: 'Mahabal Metals Pvt Ltd', location: [16.8524, 74.5815], city: 'Sangli' },
{ name: 'Mangal Industries Limited', location: [13.2177, 79.1006], city: 'Chittoor' },
{ name: 'Nirankari Electrochem Pvt. Ltd', location: [28.4089, 77.3178], city: 'Faridabad' },
{ name: 'NVK Techno Shine Coatings', location: [28.4089, 77.3178], city: 'Faridabad' },
{ name: 'Phorotech Surfin (I) Pvt Ltd (D)', location: [12.8231, 80.0453], city: 'Sriperumbdur' },
{ name: 'Pooja Forge Ltd', location: [28.4089, 77.3178], city: 'Faridabad' },
{ name: 'Right Tight Fastners Pvt. Ltd', location: [19.9975, 73.7898], city: 'Nashik' },
{ name: 'Sai Green Metafin Coating', location: [28.8955, 76.6066], city: 'Rohtak' },
{ name: 'Saify Industries', location: [12.9716, 77.5946], city: 'Bangalore' },
{ name: 'Shree Balaji Industries LLP', location: [30.0915, 78.2945], city: 'Siidcul' },
{ name: 'SKS Fasteners Ltd.Unit-III', location: [18.5204, 73.8567], city: 'Pune' },
{ name: 'Sterling Tools Limited (Prithla )', location: [28.4089, 77.3178], city: 'Faridabad' },
{ name: 'Sundram Fasteners Limited', location: [13.0827, 80.2707], city: 'Chennai' },
{ name: 'Techno Shine Surface Engineers', location: [28.4089, 77.3178], city: 'Faridabad' },
{ name: 'The Parshwanath Metal', location: [18.5204, 73.8567], city: 'Pune' },
{ name: 'V R Dacro (Pvt) Ltd', location: [18.5204, 73.8567], city: 'Pune' },
{ name: 'Varun Advance Coating', location: [30.9000, 75.8573], city: 'Ludhiana' }
];
var redIcon = L.icon({
iconUrl: 'red-pin.png',
iconSize: [15, 25],
});
distributors.forEach(function (distributor) {
var marker = L.marker(distributor.location, { icon: redIcon }).addTo(map);
marker.bindPopup('<h3>' + distributor.name + '</h3><p>Located in ' + distributor.city + '</p>');
});
</script>
</body>
</html>