Locations
Mills Location
ArcelorMittal manufactures rails that are used all over the world
ArcelorMittal is part of the reduced group of rail manufacturers with sites in:
Gijon (Spain), Dabrowa Gonizca and Chorzow (Poland) and Rodange (Luxembourg).
ArcelorMittal Gijón
Apartado 570 (P:O: Box 570). Edificio de Energías, 2ª P. 33691 – Gijón, Asturias España
ArcelorMittal Rodange 2, rue de l´industrie. L-4823 – Rodange G.D. of Luxemburgo
ArcelorMittal Dabrowa Al.J.Pilsudskiego 92. 41-308 – Dabrowa , Górnicza Polonia
ArcelorMittal Krolewska Ul. Metalowcow. 41-500 – Chorzów Polonia
var styles = [
{
„featureType”: „administrative”,
„elementType”: „labels.text.fill”,
„stylers”: [
{
„color”: „#444444”
}
]
},
{
„featureType”: „landscape”,
„elementType”: „all”,
„stylers”: [
{
„color”: „#f2f2f2”
}
]
},
{
„featureType”: „poi”,
„elementType”: „all”,
„stylers”: [
{
„visibility”: „off”
}
]
},
{
„featureType”: „road”,
„elementType”: „all”,
„stylers”: [
{
„saturation”: -100
},
{
„lightness”: 45
}
]
},
{
„featureType”: „road.highway”,
„elementType”: „all”,
„stylers”: [
{
„visibility”: „simplified”
}
]
},
{
„featureType”: „road.arterial”,
„elementType”: „labels.icon”,
„stylers”: [
{
„visibility”: „off”
}
]
},
{
„featureType”: „transit”,
„elementType”: „all”,
„stylers”: [
{
„visibility”: „off”
}
]
},
{
„featureType”: „water”,
„elementType”: „all”,
„stylers”: [
{
„color”: „#999999”
},
{
„visibility”: „on”
}
]
}];
var map;
function initialize_locations() {
var bounds = new google.maps.LatLngBounds();
var myLatlng = new google.maps.LatLng(43.5269897, -5.7457805000000235);
var mapOptions = {
zoom: 17,
center: myLatlng,
scrollwheel: false,
styles: styles,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById(’locations’), mapOptions);
var myLatlng_0 = new google.maps.LatLng(43.5269897, -5.7457805000000235);
var marker_0 = new google.maps.Marker({
position: myLatlng_0,
map: map,
animation: google.maps.Animation.DROP,
icon: '/maps/map-marker-24.png’,
title: 'ArcelorMittal Gijón’
});
var infowindow_0 = new google.maps.InfoWindow({
content: ’
ArcelorMittal Gijón
’
});
marker_0.addListener(’click’, function() {
infowindow_0.open(map, marker_0);
});
bounds.extend(myLatlng_0);
var myLatlng_1 = new google.maps.LatLng(49.5524486, 5.8424311999999645);
var marker_1 = new google.maps.Marker({
position: myLatlng_1,
map: map,
animation: google.maps.Animation.DROP,
icon: '/maps/map-marker-24.png’,
title: 'ArcelorMittal Rodange’
});
var infowindow_1 = new google.maps.InfoWindow({
content: ’
ArcelorMittal Rodange
’
});
marker_1.addListener(’click’, function() {
infowindow_1.open(map, marker_1);
});
bounds.extend(myLatlng_1);
var myLatlng_2 = new google.maps.LatLng(50.3440431, 19.266822400000024);
var marker_2 = new google.maps.Marker({
position: myLatlng_2,
map: map,
animation: google.maps.Animation.DROP,
icon: '/maps/map-marker-24.png’,
title: ’ ArcelorMittal Dabrowa’
});
var infowindow_2 = new google.maps.InfoWindow({
content: ’
ArcelorMittal Dabrowa
’
});
marker_2.addListener(’click’, function() {
infowindow_2.open(map, marker_2);
});
bounds.extend(myLatlng_2);
var myLatlng_3 = new google.maps.LatLng(40.2140896, -76.80266599999999);
var marker_3 = new google.maps.Marker({
position: myLatlng_3,
map: map,
animation: google.maps.Animation.DROP,
icon: '/maps/map-marker-24.png’,
title: 'ArcelorMittal Steelton’
});
var infowindow_3 = new google.maps.InfoWindow({
content: ’
ArcelorMittal Steelton
’
});
marker_3.addListener(’click’, function() {
infowindow_3.open(map, marker_3);
});
bounds.extend(myLatlng_3);
var myLatlng_4 = new google.maps.LatLng(50.3033922, 18.954871700000012);
var marker_4 = new google.maps.Marker({
position: myLatlng_4,
map: map,
animation: google.maps.Animation.DROP,
icon: '/maps/map-marker-24.png’,
title: ’ ArcelorMittal Krolewska <br /> ArcelorMittal Dabrowa’
});
var infowindow_4 = new google.maps.InfoWindow({
content: ’
ArcelorMittal Krolewska ArcelorMittal Dabrowa
’
});
marker_4.addListener(’click’, function() {
infowindow_4.open(map, marker_4);
});
bounds.extend(myLatlng_4);
map.fitBounds(bounds);
}
$(document).on(’page:load ready’, function(){
initialize_locations();
});
// google.maps.event.addDomListener(window, 'load’, initialize);