carte france
function initialize() { var styles = { 'monTheme': [ { featureType: 'all', stylers: [ {saturation: -100}, {gamma: 0.50} ] } ]}; var citymap = {}; citymap['strasbourg'] = { center: new google.maps.LatLng(48.583148,7.747882), population: 271708 }; citymap['paris'] = { center: new google.maps.LatLng(48.856614,2.352222), population: 2234105 }; citymap['lyon'] = { center: new google.maps.LatLng(45.764043,4.835659), population: 479803 } var mapOptions = { zoom: 6, center: new google.maps.LatLng(48,2), mapTypeId: google.maps.MapTypeId.ROADMAP, disableDefaultUI: true, draggable: false, mapTypeId: 'monTheme' } var map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions); var styledMapType = new google.maps.StyledMapType(styles['monTheme'], {name: 'monTheme'}); map.mapTypes.set('monTheme', styledMapType); for (var city in citymap) { var populationOptions = { strokeColor: '#FF0000', strokeOpacity: 0.8, strokeWeight: 2, fillColor: '#FF0000', fillOpacity: 0.35, map: map, center: citymap[city].center, radius: citymap[city].population / 20 }; var cityCircle = new google.maps.Circle(populationOptions); } }