diff --git a/examples.html b/examples.html index 7f5edaae52..7a6c7bb34b 100644 --- a/examples.html +++ b/examples.html @@ -2,48 +2,28 @@ - Demo + jQuery Mapael examples
-

Map examples

- -

Minimal example (France)

-
+

Minimal example

+
Alternative content for the map
-

Refreshable map of France with coloured cities and areas labels and zoom buttons

-
- +

Map with some custom plots and areas

+
+
+ Alternative content for the map +
+
+ +

Map with links between the plots

+
Alternative content for the map
-

Map with some overloaded parameters and 'onclick' callback on areas (France)

-
+

Map with zoom-in, zoom-out buttons and zoom on mousewheel

+
Alternative content for the map
- -

Population of France by department with a legend

-
+ +

Map with a legend for areas

+
Alternative content for the map
@@ -114,36 +112,10 @@ Alternative content for the legend
+ -

Population of the 1000 more populated french cities with a legend

-
-
- Alternative content for the map -
-
- Alternative content for the legend -
-
- -

Map of the world with the population by country

-
-
- Alternative content for the map -
-
- Alternative content for the legend -
-
- Alternative content for the legend -
-
- -

Map of USA with some plotted cities

-
-
- Alternative content for the map -
-
+ + All example for jQuery Mapael are available on neveldo.fr/mapael.
diff --git a/examples.js b/examples.js index 84c16a651c..08f53292ce 100644 --- a/examples.js +++ b/examples.js @@ -1,188 +1,427 @@ $(function(){ - // Example #1 - $(".maparea1").mapael({ - map : { - name : "france_departments" - , width : 250 - } - }); - - // Example #2 - $(".maparea2").mapael({ - map : { - name : "france_departments" - , zoom: { - enabled: true + $(function(){ + $(".container1").mapael({ + map : { + // Set the name of the map to display + name : "france_departments", } + }); + }); + + $(".container2").mapael({ + map : { + name : "france_departments" + + // Set default plots and areas style , defaultPlot : { attrs : { - opacity : 0.6 + fill: "#004a9b" + , opacity : 0.6 + } + , attrsHover : { + opacity : 1 + } + , text : { + attrs : { + fill : "#505444" + } + , attrsHover : { + fill : "#000" + } + } + } + , defaultArea: { + attrs : { + fill : "#f4f4e8" + , stroke: "#ced8d0" + } + , attrsHover : { + fill: "#a4e100" + } + , text : { + attrs : { + fill : "#505444" + } + , attrsHover : { + fill : "#000" + } } } }, + + // Customize some areas of the map areas: { "department-56" : { - text : {content : "56"}, - tooltip: {content : "Morbihan (56)"} + text : {content : "Morbihan", attrs : {"font-size" : 10}}, + tooltip: {content : "Morbihan
Bretagne"} + }, + "department-21" : { + attrs : { + fill : "#488402" + } + , attrsHover : { + fill: "#a4e100" + } } }, + + // Add some plots on the map + plots : { + // Image plot + 'paris' : { + type : "image", + url: "http://www.neveldo.fr/mapael/marker.png", + width: 12, + height: 40, + latitude : 48.86, + longitude: 2.3444, + attrs : { + opacity : 1 + }, + attrsHover: { + transform : "s1.5" + } + }, + // Circle plot + 'lyon' : { + type: "circle", + size:50, + latitude :45.758888888889, + longitude: 4.8413888888889, + tooltip: {content : "City : Lyon
Rhône-Alpes"}, + text : {content : "Lyon"} + }, + // Square plot + 'rennes' : { + type :"square", + size :20, + latitude : 48.114166666667, + longitude: -1.6808333333333, + tooltip: {content : "City : Rennes
Bretagne"}, + text : {content : "Rennes"} + }, + // Plot positioned by x and y instead of latitude, longitude + 'myplot' : { + x : 300, + y: 200, + text : { + content : "My plot" + , position: "bottom" + , attrs : {"font-size" : 10, fill : "#004a9b", opacity: 0.6} + , attrsHover : {fill : "#004a9b", opacity: 1} + }, + }, + 'Bordeaux' : { + type: "circle", + size:30, + latitude :44.834763, + longitude: -0.580991, + attrs : { + opacity : 1 + }, + text : { + content : "33", + position : "inner", + attrs : { + "font-size" : 16 + , "font-weight" : "bold" + , fill : "#fff" + }, + attrsHover : { + "font-size" : 16 + , "font-weight" : "bold" + , fill : "#fff" + } + } + } + } + }); + + $(".container3").mapael({ + map : { + name : "world_countries", + defaultArea: { + attrs : { + fill : "#f4f4e8" + , stroke: "#ced8d0" + } + } + // Default attributes can be set for all links + , defaultLink: { + factor : 0.4 + , attrsHover : { + stroke: "#a4e100" + } + } + , defaultPlot : { + text : { + attrs : { + fill:"#000" + }, + attrsHover : { + fill:"#000" + } + } + } + }, plots : { 'paris' : { - latitude : 48.86, - longitude: 2.3444 + latitude :48.86, + longitude :2.3444, + tooltip: {content : "Paris
Population: 500000000"} }, + 'newyork' : { + latitude :40.667, + longitude :-73.833, + tooltip: {content : "New york
Population: 200001"} + }, + 'sanfrancisco' : { + latitude: 37.792032, + longitude: -122.394613, + tooltip: {content : "San Francisco"} + }, + 'brasilia' : { + latitude :-15.781682, + longitude :-47.924195, + tooltip: {content : "Brasilia
Population: 200000001"} + }, + 'roma': { + latitude :41.827637, + longitude :12.462732, + tooltip: {content : "Roma"} + }, + 'miami' : { + latitude: 25.789125, + longitude: -80.205674, + tooltip: {content : "Miami"} + }, + + // Size=0 in order to make plots invisible + 'tokyo': { + latitude :35.687418, + longitude :139.692306, + size:0, + text : {content : 'Tokyo'} + }, + 'sydney' : { + latitude :-33.917, + longitude :151.167, + size:0, + text : {content : 'Sydney'} + }, + 'plot1': { + latitude :22.906561, + longitude :86.840170, + size:0, + text : {content : 'Plot1', position : 'left', margin:5} + }, + 'plot2': { + latitude :-0.390553, + longitude :115.586762, + size:0, + text : {content : 'Plot2'} + }, + 'plot3': { + latitude :44.065626, + longitude :94.576079, + size:0, + text : {content : 'Plot3'} + } + }, + // Links allow you to connect plots between them + links: { + 'parisnewyork' : { + // The curve can be inverted by setting a negative factor + factor : -0.3 + , between : ['paris', 'newyork'] + , attrs : { + "stroke-width" : 2 + } + , tooltip: {content : "Paris - New-York"} + } + , 'parissanfrancisco' : { + factor : -0.5 + , between : ['paris', 'sanfrancisco'] + , attrs : { + "stroke-width" : 4 + } + , tooltip: {content : "Paris - San - Francisco"} + } + , 'parisbrasilia' : { + factor : -0.8 + , between : ['paris', 'brasilia'] + , attrs : { + "stroke-width" : 1 + } + , tooltip: {content : "Paris - Brasilia"} + } + , 'romamiami' : { + factor : 0.2 + , between : ['roma', 'miami'] + , attrs : { + "stroke-width" : 4 + } + , tooltip: {content : "Roma - Miami"} + } + , 'sydneyplot1' : { + factor : -0.2 + , between : ['sydney', 'plot1'] + , attrs : { + stroke: "#a4e100", + "stroke-width" : 3, + "stroke-linecap":"round", + opacity:0.6 + } + , tooltip: {content : "Sydney - Plot1"} + } + , 'sydneyplot2' : { + factor : -0.1 + , between : ['sydney', 'plot2'] + , attrs : { + stroke: "#a4e100", + "stroke-width" : 8, + "stroke-linecap":"round", + opacity:0.6 + } + , tooltip: {content : "Sydney - Plot2"} + } + , 'sydneyplot3' : { + factor : 0.2 + , between : ['sydney', 'plot3'] + , attrs : { + stroke: "#a4e100", + "stroke-width" : 4, + "stroke-linecap":"round", + opacity:0.6 + } + , tooltip: {content : "Sydney - Plot3"} + } + , 'sydneytokyo' : { + factor : 0.2 + , between : ['sydney', 'tokyo'] + , attrs : { + stroke: "#a4e100", + "stroke-width" : 6, + "stroke-linecap":"round", + opacity:0.6 + } + , tooltip: {content : "Sydney - Plot2"} + } + } + }); + + $(".container4").mapael({ + map : { + name : "france_departments" + // Enable zoom on the map + , zoom : { + enabled : true + } + // Set default plots and areas style + , defaultPlot : { + attrs : { + fill: "#004a9b" + , opacity : 0.6 + } + , attrsHover : { + opacity : 1 + } + , text : { + attrs : { + fill : "#505444" + } + , attrsHover : { + fill : "#000" + } + } + } + , defaultArea: { + attrs : { + fill : "#f4f4e8" + , stroke: "#ced8d0" + } + , attrsHover : { + fill: "#a4e100" + } + , text : { + attrs : { + fill : "#505444" + } + , attrsHover : { + fill : "#000" + } + } + } + }, + + // Customize some areas of the map + areas: { + "department-56" : { + text : {content : "Morbihan", attrs : {"font-size" : 10}}, + tooltip: {content : "Morbihan (56)"} + }, + "department-21" : { + attrs : { + fill : "#488402" + } + , attrsHover : { + fill: "#a4e100" + } + } + }, + + // Add some plots on the map + plots : { + // Image plot + 'paris' : { + type : "image", + url: "http://www.neveldo.fr/mapael/marker.png", + width: 12, + height: 40, + latitude : 48.86, + longitude: 2.3444, + attrs : { + opacity : 1 + }, + attrsHover: { + transform : "s1.5" + } + }, + // Circle plot 'lyon' : { type: "circle", size:50, latitude :45.758888888889, longitude: 4.8413888888889, value : 700000, - href : "http://fr.wikipedia.org/wiki/Lyon", tooltip: {content : "City : Lyon"}, text : {content : "Lyon"} }, + // Square plot 'rennes' : { type :"square", size :20, latitude : 48.114166666667, longitude: -1.6808333333333, tooltip: {content : "City : Rennes"}, - text : {content : "Rennes"}, - href : "http://fr.wikipedia.org/wiki/Rennes" + text : {content : "Rennes"} + }, + // Plot positioned by x and y instead of latitude, longitude + 'myplot' : { + x : 300, + y: 200, + text : { + content : "My plot" + , position: "bottom" + , attrs : {"font-size" : 10, fill : "#004a9b", opacity: 0.6} + , attrsHover : {fill : "#004a9b", opacity: 1} + }, } } }); - $('#refreshmaparea2').on('click', function() { - - // Update some plots and areas attributes ... - var updatedOptions = {'areas' : {}, 'plots' : {}}; - updatedOptions.areas["department-56"] = { - tooltip : { - content : "Morbihan (56) (2)" - }, - attrs: { - fill : "#0088db" - }, - text : {content : "56 (2)"} - }; - updatedOptions.plots["rennes"] = { - tooltip : { - content : "Rennes (2)" - }, - attrs: { - fill : "#f38a03" - } - , text : {position : "top"} - , size : 5 - }; - - // add some new plots ... - var newPlots = { - "Limoge" : { - latitude : 45.834444, - longitude : 1.261667, - text : {content : "Limoge"}, - tooltip : {content : "Limoge"} - } - , "Dijon" : { - size:60, - latitude : 47.323056, - longitude : 5.041944, - text : { - content : "Dijon", - position : "left", - margin : 5 - } - } - } - - // and delete some others ... - var deletedPlots = ["paris", "lyon"]; - $(".maparea2").trigger('update', [updatedOptions, newPlots, deletedPlots, {animDuration : 1000}]); - }); - - // Example #3 - $(".maparea3").mapael({ - map : { - name : "france_departments", - zoom : { - enabled : true - }, - defaultArea: { - attrs : { - fill: "#5ba4ff", - stroke: "#99c7ff", - cursor: "pointer" - }, - attrsHover : { - animDuration:0 - }, - text : { - attrs : { - cursor: "pointer", - "font-size" : 10, - fill :"#000" - }, - attrsHover : { - animDuration : 0 - } - }, - eventHandlers : { - click: function(e, id, mapElem, textElem) { - var newData = {'areas' : {}}; - if (mapElem.originalAttrs.fill == "#5ba4ff") { - newData.areas[id] = { - attrs : { - fill : "#0088db" - } - }; - } else { - newData.areas[id] = { - attrs : { - fill : "#5ba4ff" - } - }; - } - $(".maparea3").trigger('update', [newData]); - } - } - } - }, - areas: { - "department-29" : { - text : {content : "dblclick", position : "top"}, - attrs : { - fill :"#0088db" - }, - tooltip: {content : "Finistère (29)"}, - eventHandlers : { - click: function() {}, - dblclick: function(e, id, mapElem, textElem) { - var newData = {'areas' : {}}; - if (mapElem.originalAttrs.fill == "#5ba4ff") { - newData.areas[id] = { - attrs : { - fill : "#0088db" - } - }; - } else { - newData.areas[id] = { - attrs : { - fill : "#5ba4ff" - } - }; - } - $(".maparea3").trigger('update', [newData, false, false, 0]); - } - } - } - } - }); - - // Example #4 - $(".maparea4").mapael({ + $(".container5").mapael({ map : { name : "france_departments", defaultArea: { @@ -197,9 +436,7 @@ $(function(){ }, legend : { area : { - display : true, title :"Population of France by department", - labelAttrs : {title : "Hide the matching departments"}, slices : [ { max :300000, @@ -736,8978 +973,6 @@ $(function(){ tooltip: {content : "Lozère (48)
Population : 81281"} } } - }); - - // Example #5 - $(".maparea5").mapael({ - map : { - name : "france_departments", - defaultPlot: { - size: 10 - }, - defaultArea : { - attrsHover: { - fill: "#343434" - , stroke: "#5d5d5d" - , "stroke-width": 1 - , "stroke-linejoin": "round" - } - } - }, - legend : { - plot :{ - display : true, - cssClass: 'cityFrance' - , labelAttrs: { - fill: "#fff" - } - , titleAttrs: { - fill: "#fff" - } - , marginBottom: 20 - , marginLeft : 30 - , hideElemsOnClick : { - opacity : 0 - } - , title: "Population of France by city" - , slices : [ - { - size: 4, - type :"circle", - max :20000, - attrs : { - fill : "#89ff72" - }, - label :"Less than 20000 inhabitants" - }, - { - size: 6, - type :"circle", - min :20000, - max :100000, - attrs : { - fill : "#fffd72" - }, - label :"Between 20000 and 100000 inhabitants" - }, - { - size: 20, - type :"circle", - min :100000, - max :200000, - attrs : { - fill : "#ffbd54" - }, - label :"Between 100000 et 200000 inhabitants" - }, - { - size: 40, - type :"circle", - min :200000, - attrs : { - fill : "#ff5454" - }, - label :"More than 200000 inhabitants" - } - ] - } - }, - plots: { - "town-75056" : { - value: "2268265", - latitude: 48.86, - longitude: 2.3444444444444, - href : "#", - tooltip: {content : "Paris (75056)
Population : 2268265"} - }, - "town-13055" : { - value: "859368", - latitude: 43.296666666667, - longitude: 5.3763888888889, - href : "#", - tooltip: {content : "Marseille (13055)
Population : 859368"} - }, - "town-69123" : { - value: "492578", - latitude: 45.758888888889, - longitude: 4.8413888888889, - href : "#", - tooltip: {content : "Lyon (69123)
Population : 492578"} - }, - "town-31555" : { - value: "449328", - latitude: 43.604444444444, - longitude: 1.4419444444444, - href : "#", - tooltip: {content : "Toulouse (31555)
Population : 449328"} - }, - "town-06088" : { - value: "347105", - latitude: 43.701944444444, - longitude: 7.2683333333333, - href : "#", - tooltip: {content : "Nice (06088)
Population : 347105"} - }, - "town-44109" : { - value: "293234", - latitude: 47.217222222222, - longitude: -1.5538888888889, - href : "#", - tooltip: {content : "Nantes (44109)
Population : 293234"} - }, - "town-67482" : { - value: "276401", - latitude: 48.583611111111, - longitude: 7.7480555555556, - href : "#", - tooltip: {content : "Strasbourg (67482)
Population : 276401"} - }, - "town-34172" : { - value: "260572", - latitude: 43.611111111111, - longitude: 3.8766666666667, - href : "#", - tooltip: {content : "Montpellier (34172)
Population : 260572"} - }, - "town-33063" : { - value: "242945", - latitude: 44.837777777778, - longitude: -0.57944444444444, - href : "#", - tooltip: {content : "Bordeaux (33063)
Population : 242945"} - }, - "town-59350" : { - value: "234058", - latitude: 50.631944444444, - longitude: 3.0575, - href : "#", - tooltip: {content : "Lille (59350)
Population : 234058"} - }, - "town-35238" : { - value: "212939", - latitude: 48.114166666667, - longitude: -1.6808333333333, - href : "#", - tooltip: {content : "Rennes (35238)
Population : 212939"} - }, - "town-51454" : { - value: "184011", - latitude: 49.265277777778, - longitude: 4.0286111111111, - href : "#", - tooltip: {content : "Reims (51454)
Population : 184011"} - }, - "town-76351" : { - value: "178070", - latitude: 49.498888888889, - longitude: 0.12111111111111, - href : "#", - tooltip: {content : "Le Havre (76351)
Population : 178070"} - }, - "town-42218" : { - value: "174566", - latitude: 45.433888888889, - longitude: 4.3897222222222, - href : "#", - tooltip: {content : "Saint-Étienne (42218)
Population : 174566"} - }, - "town-83137" : { - value: "166851", - latitude: 43.125, - longitude: 5.9305555555556, - href : "#", - tooltip: {content : "Toulon (83137)
Population : 166851"} - }, - "town-38185" : { - value: "158249", - latitude: 45.186944444444, - longitude: 5.7263888888889, - href : "#", - tooltip: {content : "Grenoble (38185)
Population : 158249"} - }, - "town-21231" : { - value: "155233", - latitude: 47.323055555556, - longitude: 5.0419444444444, - href : "#", - tooltip: {content : "Dijon (21231)
Population : 155233"} - }, - "town-49007" : { - value: "151957", - latitude: 47.472777777778, - longitude: -0.55555555555556, - href : "#", - tooltip: {content : "Angers (49007)
Population : 151957"} - }, - "town-72181" : { - value: "147108", - latitude: 48.004166666667, - longitude: 0.19694444444444, - href : "#", - tooltip: {content : "Le Mans (72181)
Population : 147108"} - }, - "town-69266" : { - value: "146729", - latitude: 45.766111111111, - longitude: 4.8794444444444, - href : "#", - tooltip: {content : "Villeurbanne (69266)
Population : 146729"} - }, - "town-97411" : { - value: "146489", - latitude: -20.878888888889, - longitude: 55.448055555556, - href : "#", - tooltip: {content : "Saint-Denis (97411)
Population : 146489"} - }, - "town-29019" : { - value: "145561", - latitude: 48.39, - longitude: -4.4869444444444, - href : "#", - tooltip: {content : "Brest (29019)
Population : 145561"} - }, - "town-30189" : { - value: "145501", - latitude: 43.836944444444, - longitude: 4.36, - href : "#", - tooltip: {content : "Nîmes (30189)
Population : 145501"} - }, - "town-13001" : { - value: "144884", - latitude: 43.527777777778, - longitude: 5.4455555555556, - href : "#", - tooltip: {content : "Aix-en-Provence (13001)
Population : 144884"} - }, - "town-63113" : { - value: "143669", - latitude: 45.779722222222, - longitude: 3.0869444444444, - href : "#", - tooltip: {content : "Clermont-Ferrand (63113)
Population : 143669"} - }, - "town-87085" : { - value: "141540", - latitude: 45.834444444444, - longitude: 1.2616666666667, - href : "#", - tooltip: {content : "Limoges (87085)
Population : 141540"} - }, - "town-37261" : { - value: "138268", - latitude: 47.392777777778, - longitude: 0.68833333333333, - href : "#", - tooltip: {content : "Tours (37261)
Population : 138268"} - }, - "town-80021" : { - value: "136512", - latitude: 49.891944444444, - longitude: 2.2977777777778, - href : "#", - tooltip: {content : "Amiens (80021)
Population : 136512"} - }, - "town-57463" : { - value: "122928", - latitude: 49.119722222222, - longitude: 6.1769444444444, - href : "#", - tooltip: {content : "Metz (57463)
Population : 122928"} - }, - "town-25056" : { - value: "121038", - latitude: 47.242222222222, - longitude: 6.0213888888889, - href : "#", - tooltip: {content : "Besançon (25056)
Population : 121038"} - }, - "town-66136" : { - value: "119536", - latitude: 42.6975, - longitude: 2.8947222222222, - href : "#", - tooltip: {content : "Perpignan (66136)
Population : 119536"} - }, - "town-45234" : { - value: "117833", - latitude: 47.902222222222, - longitude: 1.9041666666667, - href : "#", - tooltip: {content : "Orléans (45234)
Population : 117833"} - }, - "town-92012" : { - value: "115264", - latitude: 48.835277777778, - longitude: 2.2413888888889, - href : "#", - tooltip: {content : "Boulogne-Billancourt (92012)
Population : 115264"} - }, - "town-76540" : { - value: "113461", - latitude: 49.443055555556, - longitude: 1.1025, - href : "#", - tooltip: {content : "Rouen (76540)
Population : 113461"} - }, - "town-14118" : { - value: "111949", - latitude: 49.182222222222, - longitude: -0.37055555555556, - href : "#", - tooltip: {content : "Caen (14118)
Population : 111949"} - }, - "town-68224" : { - value: "111273", - latitude: 47.748611111111, - longitude: 7.3391666666667, - href : "#", - tooltip: {content : "Mulhouse (68224)
Population : 111273"} - }, - "town-93066" : { - value: "107959", - latitude: 48.935555555556, - longitude: 2.3538888888889, - href : "#", - tooltip: {content : "Saint-Denis (93066)
Population : 107959"} - }, - "town-93066" : { - value: "107959", - latitude: 48.935555555556, - longitude: 2.3538888888889, - href : "#", - tooltip: {content : "Saint-Denis (93066)
Population : 107959"} - }, - "town-54395" : { - value: "107710", - latitude: 48.692777777778, - longitude: 6.1836111111111, - href : "#", - tooltip: {content : "Nancy (54395)
Population : 107710"} - }, - "town-95018" : { - value: "104843", - latitude: 48.947777777778, - longitude: 2.2475, - href : "#", - tooltip: {content : "Argenteuil (95018)
Population : 104843"} - }, - "town-97415" : { - value: "104818", - latitude: -21.009722222222, - longitude: 55.269722222222, - href : "#", - tooltip: {content : "Saint-Paul (97415)
Population : 104818"} - }, - "town-93048" : { - value: "103675", - latitude: 48.860277777778, - longitude: 2.4430555555556, - href : "#", - tooltip: {content : "Montreuil (93048)
Population : 103675"} - }, - "town-59512" : { - value: "95506", - latitude: 50.689166666667, - longitude: 3.1808333333333, - href : "#", - tooltip: {content : "Roubaix (59512)
Population : 95506"} - }, - "town-59183" : { - value: "93489", - latitude: 51.037777777778, - longitude: 2.3763888888889, - href : "#", - tooltip: {content : "Dunkerque (59183)
Population : 93489"} - }, - "town-59599" : { - value: "92620", - latitude: 50.7225, - longitude: 3.1602777777778, - href : "#", - tooltip: {content : "Tourcoing (59599)
Population : 92620"} - }, - "town-84007" : { - value: "91657", - latitude: 43.948611111111, - longitude: 4.8083333333333, - href : "#", - tooltip: {content : "Avignon (84007)
Population : 91657"} - }, - "town-92050" : { - value: "91114", - latitude: 48.890555555556, - longitude: 2.2036111111111, - href : "#", - tooltip: {content : "Nanterre (92050)
Population : 91114"} - }, - "town-94028" : { - value: "90779", - latitude: 48.790555555556, - longitude: 2.4619444444444, - href : "#", - tooltip: {content : "Créteil (94028)
Population : 90779"} - }, - "town-86194" : { - value: "90386", - latitude: 46.581111111111, - longitude: 0.33527777777778, - href : "#", - tooltip: {content : "Poitiers (86194)
Population : 90386"} - }, - "town-97209" : { - value: "88623", - latitude: 14.607222222222, - longitude: -61.069444444444, - href : "#", - tooltip: {content : "Fort-de-France (97209)
Population : 88623"} - }, - "town-78646" : { - value: "88253", - latitude: 48.804722222222, - longitude: 2.1341666666667, - href : "#", - tooltip: {content : "Versailles (78646)
Population : 88253"} - }, - "town-92026" : { - value: "88169", - latitude: 48.897222222222, - longitude: 2.2522222222222, - href : "#", - tooltip: {content : "Courbevoie (92026)
Population : 88169"} - }, - "town-94081" : { - value: "86210", - latitude: 48.7875, - longitude: 2.3927777777778, - href : "#", - tooltip: {content : "Vitry-sur-Seine (94081)
Population : 86210"} - }, - "town-92025" : { - value: "86094", - latitude: 48.923611111111, - longitude: 2.2522222222222, - href : "#", - tooltip: {content : "Colombes (92025)
Population : 86094"} - }, - "town-92004" : { - value: "82998", - latitude: 48.911111111111, - longitude: 2.2855555555556, - href : "#", - tooltip: {content : "Asnières-sur-Seine (92004)
Population : 82998"} - }, - "town-93005" : { - value: "82778", - latitude: 48.936388888889, - longitude: 2.4930555555556, - href : "#", - tooltip: {content : "Aulnay-sous-Bois (93005)
Population : 82778"} - }, - "town-64445" : { - value: "82776", - latitude: 43.300833333333, - longitude: -0.37, - href : "#", - tooltip: {content : "Pau (64445)
Population : 82776"} - }, - "town-92063" : { - value: "80905", - latitude: 48.877777777778, - longitude: 2.1883333333333, - href : "#", - tooltip: {content : "Rueil-Malmaison (92063)
Population : 80905"} - }, - "town-97416" : { - value: "80027", - latitude: -21.341944444444, - longitude: 55.477777777778, - href : "#", - tooltip: {content : "Saint-Pierre (97416)
Population : 80027"} - }, - "town-17300" : { - value: "77875", - latitude: 46.159444444444, - longitude: -1.1513888888889, - href : "#", - tooltip: {content : "La Rochelle (17300)
Population : 77875"} - }, - "town-93001" : { - value: "76728", - latitude: 48.911111111111, - longitude: 2.3825, - href : "#", - tooltip: {content : "Aubervilliers (93001)
Population : 76728"} - }, - "town-94017" : { - value: "76235", - latitude: 48.817222222222, - longitude: 2.5155555555556, - href : "#", - tooltip: {content : "Champigny-sur-Marne (94017)
Population : 76235"} - }, - "town-94068" : { - value: "75772", - latitude: 48.798611111111, - longitude: 2.4988888888889, - href : "#", - tooltip: {content : "Saint-Maur-des-Fossés (94068)
Population : 75772"} - }, - "town-06004" : { - value: "75174", - latitude: 43.58, - longitude: 7.1230555555556, - href : "#", - tooltip: {content : "Antibes (06004)
Population : 75174"} - }, - "town-62193" : { - value: "74573", - latitude: 50.9475, - longitude: 1.8555555555556, - href : "#", - tooltip: {content : "Calais (62193)
Population : 74573"} - }, - "town-06029" : { - value: "74273", - latitude: 43.5525, - longitude: 7.0213888888889, - href : "#", - tooltip: {content : "Cannes (06029)
Population : 74273"} - }, - "town-97422" : { - value: "74174", - latitude: -21.278055555556, - longitude: 55.515277777778, - href : "#", - tooltip: {content : "Le Tampon (97422)
Population : 74174"} - }, - "town-34032" : { - value: "72466", - latitude: 43.343333333333, - longitude: 3.2161111111111, - href : "#", - tooltip: {content : "Béziers (34032)
Population : 72466"} - }, - "town-44184" : { - value: "69724", - latitude: 47.279444444444, - longitude: -2.21, - href : "#", - tooltip: {content : "Saint-Nazaire (44184)
Population : 69724"} - }, - "town-68066" : { - value: "69187", - latitude: 48.081111111111, - longitude: 7.355, - href : "#", - tooltip: {content : "Colmar (68066)
Population : 69187"} - }, - "town-18033" : { - value: "68590", - latitude: 47.083611111111, - longitude: 2.3955555555556, - href : "#", - tooltip: {content : "Bourges (18033)
Population : 68590"} - }, - "town-93029" : { - value: "67202", - latitude: 48.923333333333, - longitude: 2.445, - href : "#", - tooltip: {content : "Drancy (93029)
Population : 67202"} - }, - "town-33281" : { - value: "67136", - latitude: 44.8425, - longitude: -0.645, - href : "#", - tooltip: {content : "Mérignac (33281)
Population : 67136"} - }, - "town-29232" : { - value: "67131", - latitude: 47.995833333333, - longitude: -4.0977777777778, - href : "#", - tooltip: {content : "Quimper (29232)
Population : 67131"} - }, - "town-2A004" : { - value: "66203", - latitude: 41.925555555556, - longitude: 8.7363888888889, - href : "#", - tooltip: {content : "Ajaccio (2A004)
Population : 66203"} - }, - "town-92040" : { - value: "65178", - latitude: 48.823055555556, - longitude: 2.2691666666667, - href : "#", - tooltip: {content : "Issy-les-Moulineaux (92040)
Population : 65178"} - }, - "town-26362" : { - value: "65043", - latitude: 44.9325, - longitude: 4.8908333333333, - href : "#", - tooltip: {content : "Valence (26362)
Population : 65043"} - }, - "town-92044" : { - value: "64757", - latitude: 48.893333333333, - longitude: 2.2877777777778, - href : "#", - tooltip: {content : "Levallois-Perret (92044)
Population : 64757"} - }, - "town-59009" : { - value: "64328", - latitude: 50.622777777778, - longitude: 3.1441666666667, - href : "#", - tooltip: {content : "Villeneuve-d'Ascq (59009)
Population : 64328"} - }, - "town-93051" : { - value: "63526", - latitude: 48.843888888889, - longitude: 2.5580555555556, - href : "#", - tooltip: {content : "Noisy-le-Grand (93051)
Population : 63526"} - }, - "town-83126" : { - value: "62883", - latitude: 43.103055555556, - longitude: 5.8783333333333, - href : "#", - tooltip: {content : "La Seyne-sur-Mer (83126)
Population : 62883"} - }, - "town-92002" : { - value: "62644", - latitude: 48.753333333333, - longitude: 2.2966666666667, - href : "#", - tooltip: {content : "Antony (92002)
Population : 62644"} - }, - "town-92051" : { - value: "62565", - latitude: 48.887222222222, - longitude: 2.2675, - href : "#", - tooltip: {content : "Neuilly-sur-Seine (92051)
Population : 62565"} - }, - "town-10387" : { - value: "61936", - latitude: 48.298888888889, - longitude: 4.0780555555556, - href : "#", - tooltip: {content : "Troyes (10387)
Population : 61936"} - }, - "town-69259" : { - value: "60448", - latitude: 45.696944444444, - longitude: 4.8858333333333, - href : "#", - tooltip: {content : "Vénissieux (69259)
Population : 60448"} - }, - "town-79191" : { - value: "59504", - latitude: 46.325, - longitude: -0.46222222222222, - href : "#", - tooltip: {content : "Niort (79191)
Population : 59504"} - }, - "town-97101" : { - value: "59267", - latitude: 16.270555555556, - longitude: -61.504722222222, - href : "#", - tooltip: {content : "Les Abymes (97101)
Population : 59267"} - }, - "town-92024" : { - value: "59228", - latitude: 48.903611111111, - longitude: 2.3055555555556, - href : "#", - tooltip: {content : "Clichy (92024)
Population : 59228"} - }, - "town-95585" : { - value: "59204", - latitude: 48.997222222222, - longitude: 2.3780555555556, - href : "#", - tooltip: {content : "Sarcelles (95585)
Population : 59204"} - }, - "town-73065" : { - value: "59184", - latitude: 45.566388888889, - longitude: 5.9208333333333, - href : "#", - tooltip: {content : "Chambéry (73065)
Population : 59184"} - }, - "town-33318" : { - value: "58977", - latitude: 44.805833333333, - longitude: -0.63222222222222, - href : "#", - tooltip: {content : "Pessac (33318)
Population : 58977"} - }, - "town-56121" : { - value: "58831", - latitude: 47.745833333333, - longitude: -3.3663888888889, - href : "#", - tooltip: {content : "Lorient (56121)
Population : 58831"} - }, - "town-94041" : { - value: "58189", - latitude: 48.813888888889, - longitude: 2.3877777777778, - href : "#", - tooltip: {content : "Ivry-sur-Seine (94041)
Population : 58189"} - }, - "town-82121" : { - value: "58014", - latitude: 44.017222222222, - longitude: 1.355, - href : "#", - tooltip: {content : "Montauban (82121)
Population : 58014"} - }, - "town-95127" : { - value: "57900", - latitude: 49.035833333333, - longitude: 2.0625, - href : "#", - tooltip: {content : "Cergy (95127)
Population : 57900"} - }, - "town-02691" : { - value: "57533", - latitude: 49.847777777778, - longitude: 3.2855555555556, - href : "#", - tooltip: {content : "Saint-Quentin (02691)
Population : 57533"} - }, - "town-60057" : { - value: "56181", - latitude: 49.434166666667, - longitude: 2.0875, - href : "#", - tooltip: {content : "Beauvais (60057)
Population : 56181"} - }, - "town-49099" : { - value: "56137", - latitude: 47.058888888889, - longitude: -0.87972222222222, - href : "#", - tooltip: {content : "Cholet (49099)
Population : 56137"} - }, - "town-85191" : { - value: "56101", - latitude: 46.669722222222, - longitude: -1.4277777777778, - href : "#", - tooltip: {content : "La Roche-sur-Yon (85191)
Population : 56101"} - }, - "town-97302" : { - value: "56002", - latitude: 4.9386111111111, - longitude: -52.335, - href : "#", - tooltip: {content : "Cayenne (97302)
Population : 56002"} - }, - "town-83069" : { - value: "55906", - latitude: 43.118888888889, - longitude: 6.1286111111111, - href : "#", - tooltip: {content : "Hyères (83069)
Population : 55906"} - }, - "town-94076" : { - value: "55879", - latitude: 48.793888888889, - longitude: 2.3611111111111, - href : "#", - tooltip: {content : "Villejuif (94076)
Population : 55879"} - }, - "town-56260" : { - value: "55116", - latitude: 47.655, - longitude: -2.7616666666667, - href : "#", - tooltip: {content : "Vannes (56260)
Population : 55116"} - }, - "town-93031" : { - value: "54775", - latitude: 48.954722222222, - longitude: 2.3083333333333, - href : "#", - tooltip: {content : "Épinay-sur-Seine (93031)
Population : 54775"} - }, - "town-93055" : { - value: "54464", - latitude: 48.898055555556, - longitude: 2.4072222222222, - href : "#", - tooltip: {content : "Pantin (93055)
Population : 54464"} - }, - "town-97409" : { - value: "54311", - latitude: -20.960555555556, - longitude: 55.650555555556, - href : "#", - tooltip: {content : "Saint-André (97409)
Population : 54311"} - }, - "town-53130" : { - value: "54100", - latitude: 48.072777777778, - longitude: -0.77, - href : "#", - tooltip: {content : "Laval (53130)
Population : 54100"} - }, - "town-93010" : { - value: "53934", - latitude: 48.902777777778, - longitude: 2.4836111111111, - href : "#", - tooltip: {content : "Bondy (93010)
Population : 53934"} - }, - "town-13004" : { - value: "53785", - latitude: 43.676944444444, - longitude: 4.6286111111111, - href : "#", - tooltip: {content : "Arles (13004)
Population : 53785"} - }, - "town-94033" : { - value: "53667", - latitude: 48.851666666667, - longitude: 2.4772222222222, - href : "#", - tooltip: {content : "Fontenay-sous-Bois (94033)
Population : 53667"} - }, - "town-94046" : { - value: "53513", - latitude: 48.805833333333, - longitude: 2.4377777777778, - href : "#", - tooltip: {content : "Maisons-Alfort (94046)
Population : 53513"} - }, - "town-27229" : { - value: "53260", - latitude: 49.023333333333, - longitude: 1.1525, - href : "#", - tooltip: {content : "Évreux (27229)
Population : 53260"} - }, - "town-77108" : { - value: "53238", - latitude: 48.878611111111, - longitude: 2.5888888888889, - href : "#", - tooltip: {content : "Chelles (77108)
Population : 53238"} - }, - "town-92023" : { - value: "53113", - latitude: 48.800833333333, - longitude: 2.2619444444444, - href : "#", - tooltip: {content : "Clamart (92023)
Population : 53113"} - }, - "town-91228" : { - value: "53019", - latitude: 48.633888888889, - longitude: 2.4441666666667, - href : "#", - tooltip: {content : "Évry (91228)
Population : 53019"} - }, - "town-83061" : { - value: "52580", - latitude: 43.433055555556, - longitude: 6.7355555555556, - href : "#", - tooltip: {content : "Fréjus (83061)
Population : 52580"} - }, - "town-77284" : { - value: "52540", - latitude: 48.959444444444, - longitude: 2.8877777777778, - href : "#", - tooltip: {content : "Meaux (77284)
Population : 52540"} - }, - "town-97414" : { - value: "52507", - latitude: -21.286666666667, - longitude: 55.409166666667, - href : "#", - tooltip: {content : "Saint-Louis (97414)
Population : 52507"} - }, - "town-11262" : { - value: "52489", - latitude: 43.184722222222, - longitude: 3.0036111111111, - href : "#", - tooltip: {content : "Narbonne (11262)
Population : 52489"} - }, - "town-74010" : { - value: "52375", - latitude: 45.899166666667, - longitude: 6.1294444444444, - href : "#", - tooltip: {content : "Annecy (74010)
Population : 52375"} - }, - "town-06069" : { - value: "52185", - latitude: 43.658055555556, - longitude: 6.9252777777778, - href : "#", - tooltip: {content : "Grasse (06069)
Population : 52185"} - }, - "town-93007" : { - value: "51735", - latitude: 48.938611111111, - longitude: 2.4611111111111, - href : "#", - tooltip: {content : "Le Blanc-Mesnil (93007)
Population : 51735"} - }, - "town-08105" : { - value: "51647", - latitude: 49.771388888889, - longitude: 4.7194444444444, - href : "#", - tooltip: {content : "Charleville-Mézières (08105)
Population : 51647"} - }, - "town-78586" : { - value: "51504", - latitude: 48.945277777778, - longitude: 2.17, - href : "#", - tooltip: {content : "Sartrouville (78586)
Population : 51504"} - }, - "town-90010" : { - value: "51233", - latitude: 47.641111111111, - longitude: 6.8494444444444, - href : "#", - tooltip: {content : "Belfort (90010)
Population : 51233"} - }, - "town-81004" : { - value: "51181", - latitude: 43.928055555556, - longitude: 2.1458333333333, - href : "#", - tooltip: {content : "Albi (81004)
Population : 51181"} - }, - "town-19031" : { - value: "50272", - latitude: 45.158888888889, - longitude: 1.5330555555556, - href : "#", - tooltip: {content : "Brive-la-Gaillarde (19031)
Population : 50272"} - }, - "town-93071" : { - value: "50225", - latitude: 48.941388888889, - longitude: 2.5227777777778, - href : "#", - tooltip: {content : "Sevran (93071)
Population : 50225"} - }, - "town-92049" : { - value: "48983", - latitude: 48.816388888889, - longitude: 2.3211111111111, - href : "#", - tooltip: {content : "Montrouge (92049)
Population : 48983"} - }, - "town-94080" : { - value: "48955", - latitude: 48.847777777778, - longitude: 2.4391666666667, - href : "#", - tooltip: {content : "Vincennes (94080)
Population : 48955"} - }, - "town-11069" : { - value: "48893", - latitude: 43.215833333333, - longitude: 2.3513888888889, - href : "#", - tooltip: {content : "Carcassonne (11069)
Population : 48893"} - }, - "town-41018" : { - value: "48568", - latitude: 47.593055555556, - longitude: 1.3272222222222, - href : "#", - tooltip: {content : "Blois (41018)
Population : 48568"} - }, - "town-13056" : { - value: "48261", - latitude: 43.405277777778, - longitude: 5.0475, - href : "#", - tooltip: {content : "Martigues (13056)
Population : 48261"} - }, - "town-22278" : { - value: "48246", - latitude: 48.513611111111, - longitude: -2.7602777777778, - href : "#", - tooltip: {content : "Saint-Brieuc (22278)
Population : 48246"} - }, - "town-36044" : { - value: "48187", - latitude: 46.809722222222, - longitude: 1.6902777777778, - href : "#", - tooltip: {content : "Châteauroux (36044)
Population : 48187"} - }, - "town-35288" : { - value: "48133", - latitude: 48.647222222222, - longitude: -2.0088888888889, - href : "#", - tooltip: {content : "Saint-Malo (35288)
Population : 48133"} - }, - "town-93008" : { - value: "47855", - latitude: 48.909722222222, - longitude: 2.4386111111111, - href : "#", - tooltip: {content : "Bobigny (93008)
Population : 47855"} - }, - "town-06027" : { - value: "47711", - latitude: 43.663611111111, - longitude: 7.1483333333333, - href : "#", - tooltip: {content : "Cagnes-sur-Mer (06027)
Population : 47711"} - }, - "town-93070" : { - value: "47604", - latitude: 48.906944444444, - longitude: 2.3330555555556, - href : "#", - tooltip: {content : "Saint-Ouen (93070)
Population : 47604"} - }, - "town-92073" : { - value: "47121", - latitude: 48.871111111111, - longitude: 2.2269444444444, - href : "#", - tooltip: {content : "Suresnes (92073)
Population : 47121"} - }, - "town-13005" : { - value: "46892", - latitude: 43.290833333333, - longitude: 5.5708333333333, - href : "#", - tooltip: {content : "Aubagne (13005)
Population : 46892"} - }, - "town-71076" : { - value: "46791", - latitude: 46.793611111111, - longitude: 4.8475, - href : "#", - tooltip: {content : "Chalon-sur-Saône (71076)
Population : 46791"} - }, - "town-51108" : { - value: "46668", - latitude: 48.956666666667, - longitude: 4.3644444444444, - href : "#", - tooltip: {content : "Châlons-en-Champagne (51108)
Population : 46668"} - }, - "town-64102" : { - value: "46191", - latitude: 43.4925, - longitude: -1.4763888888889, - href : "#", - tooltip: {content : "Bayonne (64102)
Population : 46191"} - }, - "town-92048" : { - value: "45834", - latitude: 48.8075, - longitude: 2.2402777777778, - href : "#", - tooltip: {content : "Meudon (92048)
Population : 45834"} - }, - "town-92062" : { - value: "45093", - latitude: 48.884166666667, - longitude: 2.2380555555556, - href : "#", - tooltip: {content : "Puteaux (92062)
Population : 45093"} - }, - "town-65440" : { - value: "44952", - latitude: 43.232777777778, - longitude: 0.07444444444444399, - href : "#", - tooltip: {content : "Tarbes (65440)
Population : 44952"} - }, - "town-94002" : { - value: "44439", - latitude: 48.7975, - longitude: 2.4241666666667, - href : "#", - tooltip: {content : "Alfortville (94002)
Population : 44439"} - }, - "town-59606" : { - value: "44362", - latitude: 50.359166666667, - longitude: 3.525, - href : "#", - tooltip: {content : "Valenciennes (59606)
Population : 44362"} - }, - "town-16015" : { - value: "44219", - latitude: 45.649444444444, - longitude: 0.15944444444444, - href : "#", - tooltip: {content : "Angoulême (16015)
Population : 44219"} - }, - "town-44162" : { - value: "44078", - latitude: 47.211388888889, - longitude: -1.6511111111111, - href : "#", - tooltip: {content : "Saint-Herblain (44162)
Population : 44078"} - }, - "town-81065" : { - value: "43995", - latitude: 43.605833333333, - longitude: 2.24, - href : "#", - tooltip: {content : "Castres (81065)
Population : 43995"} - }, - "town-13103" : { - value: "43830", - latitude: 43.640555555556, - longitude: 5.0972222222222, - href : "#", - tooltip: {content : "Salon-de-Provence (13103)
Population : 43830"} - }, - "town-62160" : { - value: "43805", - latitude: 50.725555555556, - longitude: 1.6138888888889, - href : "#", - tooltip: {content : "Boulogne-sur-Mer (62160)
Population : 43805"} - }, - "town-91174" : { - value: "43747", - latitude: 48.610277777778, - longitude: 2.4747222222222, - href : "#", - tooltip: {content : "Corbeil-Essonnes (91174)
Population : 43747"} - }, - "town-13047" : { - value: "43651", - latitude: 43.514166666667, - longitude: 4.9888888888889, - href : "#", - tooltip: {content : "Istres (13047)
Population : 43651"} - }, - "town-2B033" : { - value: "43615", - latitude: 42.7, - longitude: 9.449444444444399, - href : "#", - tooltip: {content : "Bastia (2B033)
Population : 43615"} - }, - "town-59178" : { - value: "43530", - latitude: 50.370833333333, - longitude: 3.0791666666667, - href : "#", - tooltip: {content : "Douai (59178)
Population : 43530"} - }, - "town-34301" : { - value: "43436", - latitude: 43.404444444444, - longitude: 3.6966666666667, - href : "#", - tooltip: {content : "Sète (34301)
Population : 43436"} - }, - "town-62041" : { - value: "43289", - latitude: 50.289166666667, - longitude: 2.78, - href : "#", - tooltip: {content : "Arras (62041)
Population : 43289"} - }, - "town-78361" : { - value: "43268", - latitude: 48.990555555556, - longitude: 1.7166666666667, - href : "#", - tooltip: {content : "Mantes-la-Jolie (78361)
Population : 43268"} - }, - "town-91377" : { - value: "43006", - latitude: 48.730555555556, - longitude: 2.2763888888889, - href : "#", - tooltip: {content : "Massy (91377)
Population : 43006"} - }, - "town-06030" : { - value: "42780", - latitude: 43.576111111111, - longitude: 7.0186111111111, - href : "#", - tooltip: {content : "Le Cannet (06030)
Population : 42780"} - }, - "town-30007" : { - value: "42697", - latitude: 44.127222222222, - longitude: 4.0808333333333, - href : "#", - tooltip: {content : "Alès (30007)
Population : 42697"} - }, - "town-69290" : { - value: "42428", - latitude: 45.696388888889, - longitude: 4.9438888888889, - href : "#", - tooltip: {content : "Saint-Priest (69290)
Population : 42428"} - }, - "town-60159" : { - value: "42295", - latitude: 49.414166666667, - longitude: 2.8222222222222, - href : "#", - tooltip: {content : "Compiègne (60159)
Population : 42295"} - }, - "town-01053" : { - value: "42184", - latitude: 46.204722222222, - longitude: 5.2280555555556, - href : "#", - tooltip: {content : "Bourg-en-Bresse (01053)
Population : 42184"} - }, - "town-93046" : { - value: "42060", - latitude: 48.918333333333, - longitude: 2.5352777777778, - href : "#", - tooltip: {content : "Livry-Gargan (93046)
Population : 42060"} - }, - "town-78551" : { - value: "42009", - latitude: 48.896388888889, - longitude: 2.0905555555556, - href : "#", - tooltip: {content : "Saint-Germain-en-Laye (78551)
Population : 42009"} - }, - "town-33522" : { - value: "41971", - latitude: 44.808333333333, - longitude: -0.5891666666666699, - href : "#", - tooltip: {content : "Talence (33522)
Population : 41971"} - }, - "town-57672" : { - value: "41971", - latitude: 49.358055555556, - longitude: 6.1683333333333, - href : "#", - tooltip: {content : "Thionville (57672)
Population : 41971"} - }, - "town-69256" : { - value: "41970", - latitude: 45.786944444444, - longitude: 4.925, - href : "#", - tooltip: {content : "Vaulx-en-Velin (69256)
Population : 41970"} - }, - "town-69034" : { - value: "41840", - latitude: 45.794722222222, - longitude: 4.8463888888889, - href : "#", - tooltip: {content : "Caluire-et-Cuire (69034)
Population : 41840"} - }, - "town-59650" : { - value: "41809", - latitude: 50.701111111111, - longitude: 3.2133333333333, - href : "#", - tooltip: {content : "Wattrelos (59650)
Population : 41809"} - }, - "town-92036" : { - value: "41676", - latitude: 48.9325, - longitude: 2.3047222222222, - href : "#", - tooltip: {content : "Gennevilliers (92036)
Population : 41676"} - }, - "town-05061" : { - value: "41659", - latitude: 44.558611111111, - longitude: 6.0777777777778, - href : "#", - tooltip: {content : "Gap (05061)
Population : 41659"} - }, - "town-93064" : { - value: "41431", - latitude: 48.873055555556, - longitude: 2.4852777777778, - href : "#", - tooltip: {content : "Rosny-sous-Bois (93064)
Population : 41431"} - }, - "town-94022" : { - value: "41275", - latitude: 48.766388888889, - longitude: 2.4077777777778, - href : "#", - tooltip: {content : "Choisy-le-Roi (94022)
Population : 41275"} - }, - "town-77288" : { - value: "40609", - latitude: 48.539722222222, - longitude: 2.6591666666667, - href : "#", - tooltip: {content : "Melun (77288)
Population : 40609"} - }, - "town-28085" : { - value: "40420", - latitude: 48.446666666667, - longitude: 1.4883333333333, - href : "#", - tooltip: {content : "Chartres (28085)
Population : 40420"} - }, - "town-95268" : { - value: "40274", - latitude: 48.971944444444, - longitude: 2.4, - href : "#", - tooltip: {content : "Garges-lès-Gonesse (95268)
Population : 40274"} - }, - "town-97213" : { - value: "39996", - latitude: 14.615277777778, - longitude: -61.001944444444, - href : "#", - tooltip: {content : "Le Lamentin (97213)
Population : 39996"} - }, - "town-93053" : { - value: "39949", - latitude: 48.890833333333, - longitude: 2.4536111111111, - href : "#", - tooltip: {content : "Noisy-le-Sec (93053)
Population : 39949"} - }, - "town-59378" : { - value: "39782", - latitude: 50.670277777778, - longitude: 3.0963888888889, - href : "#", - tooltip: {content : "Marcq-en-Barœul (59378)
Population : 39782"} - }, - "town-50129" : { - value: "39772", - latitude: 49.638611111111, - longitude: -1.6158333333333, - href : "#", - tooltip: {content : "Cherbourg-Octeville (50129)
Population : 39772"} - }, - "town-03185" : { - value: "39712", - latitude: 46.34, - longitude: 2.6025, - href : "#", - tooltip: {content : "Montluçon (03185)
Population : 39712"} - }, - "town-44143" : { - value: "39683", - latitude: 47.190555555556, - longitude: -1.5691666666667, - href : "#", - tooltip: {content : "Rezé (44143)
Population : 39683"} - }, - "town-64024" : { - value: "39432", - latitude: 43.484166666667, - longitude: -1.5194444444444, - href : "#", - tooltip: {content : "Anglet (64024)
Population : 39432"} - }, - "town-93032" : { - value: "39350", - latitude: 48.881666666667, - longitude: 2.5388888888889, - href : "#", - tooltip: {content : "Gagny (93032)
Population : 39350"} - }, - "town-69029" : { - value: "39238", - latitude: 45.738611111111, - longitude: 4.9130555555556, - href : "#", - tooltip: {content : "Bron (69029)
Population : 39238"} - }, - "town-97407" : { - value: "38668", - latitude: -20.939444444444, - longitude: 55.287222222222, - href : "#", - tooltip: {content : "Le Port (97407)
Population : 38668"} - }, - "town-97311" : { - value: "38657", - latitude: 5.5038888888889, - longitude: -54.028888888889, - href : "#", - tooltip: {content : "Saint-Laurent-du-Maroni (97311)
Population : 38657"} - }, - "town-92007" : { - value: "38384", - latitude: 48.797777777778, - longitude: 2.3125, - href : "#", - tooltip: {content : "Bagneux (92007)
Population : 38384"} - }, - "town-93027" : { - value: "38361", - latitude: 48.931388888889, - longitude: 2.3958333333333, - href : "#", - tooltip: {content : "La Courneuve (93027)
Population : 38361"} - }, - "town-58194" : { - value: "38352", - latitude: 46.9925, - longitude: 3.1566666666667, - href : "#", - tooltip: {content : "Nevers (58194)
Population : 38352"} - }, - "town-89024" : { - value: "38248", - latitude: 47.7975, - longitude: 3.5669444444444, - href : "#", - tooltip: {content : "Auxerre (89024)
Population : 38248"} - }, - "town-42187" : { - value: "38225", - latitude: 46.036111111111, - longitude: 4.0680555555556, - href : "#", - tooltip: {content : "Roanne (42187)
Population : 38225"} - }, - "town-78498" : { - value: "38049", - latitude: 48.928888888889, - longitude: 2.0447222222222, - href : "#", - tooltip: {content : "Poissy (78498)
Population : 38049"} - }, - "town-83050" : { - value: "37295", - latitude: 43.539444444444, - longitude: 6.4661111111111, - href : "#", - tooltip: {content : "Draguignan (83050)
Population : 37295"} - }, - "town-91589" : { - value: "37203", - latitude: 48.673888888889, - longitude: 2.3525, - href : "#", - tooltip: {content : "Savigny-sur-Orge (91589)
Population : 37203"} - }, - "town-26198" : { - value: "36669", - latitude: 44.558611111111, - longitude: 4.7508333333333, - href : "#", - tooltip: {content : "Montélimar (26198)
Population : 36669"} - }, - "town-37122" : { - value: "36525", - latitude: 47.350555555556, - longitude: 0.66166666666667, - href : "#", - tooltip: {content : "Joué-lès-Tours (37122)
Population : 36525"} - }, - "town-38421" : { - value: "36504", - latitude: 45.166388888889, - longitude: 5.7647222222222, - href : "#", - tooltip: {content : "Saint-Martin-d'Hères (38421)
Population : 36504"} - }, - "town-97412" : { - value: "36459", - latitude: -21.378611111111, - longitude: 55.619166666667, - href : "#", - tooltip: {content : "Saint-Joseph (97412)
Population : 36459"} - }, - "town-42207" : { - value: "36397", - latitude: 45.476388888889, - longitude: 4.5147222222222, - href : "#", - tooltip: {content : "Saint-Chamond (42207)
Population : 36397"} - }, - "town-38151" : { - value: "36054", - latitude: 45.142777777778, - longitude: 5.7177777777778, - href : "#", - tooltip: {content : "Échirolles (38151)
Population : 36054"} - }, - "town-93078" : { - value: "35931", - latitude: 48.960555555556, - longitude: 2.5302777777778, - href : "#", - tooltip: {content : "Villepinte (93078)
Population : 35931"} - }, - "town-69264" : { - value: "35900", - latitude: 45.989444444444, - longitude: 4.7197222222222, - href : "#", - tooltip: {content : "Villefranche-sur-Saône (69264)
Population : 35900"} - }, - "town-77373" : { - value: "35873", - latitude: 48.798333333333, - longitude: 2.6052777777778, - href : "#", - tooltip: {content : "Pontault-Combault (77373)
Population : 35873"} - }, - "town-78172" : { - value: "35840", - latitude: 48.997222222222, - longitude: 2.0944444444444, - href : "#", - tooltip: {content : "Conflans-Sainte-Honorine (78172)
Population : 35840"} - }, - "town-62498" : { - value: "35748", - latitude: 50.431388888889, - longitude: 2.8325, - href : "#", - tooltip: {content : "Lens (62498)
Population : 35748"} - }, - "town-31149" : { - value: "35480", - latitude: 43.612777777778, - longitude: 1.3358333333333, - href : "#", - tooltip: {content : "Colomiers (31149)
Population : 35480"} - }, - "town-13117" : { - value: "35459", - latitude: 43.46, - longitude: 5.2486111111111, - href : "#", - tooltip: {content : "Vitrolles (13117)
Population : 35459"} - }, - "town-83129" : { - value: "35415", - latitude: 43.093333333333, - longitude: 5.8394444444444, - href : "#", - tooltip: {content : "Six-Fours-les-Plages (83129)
Population : 35415"} - }, - "town-47001" : { - value: "35293", - latitude: 44.203055555556, - longitude: 0.61861111111111, - href : "#", - tooltip: {content : "Agen (47001)
Population : 35293"} - }, - "town-74281" : { - value: "35257", - latitude: 46.370555555556, - longitude: 6.4797222222222, - href : "#", - tooltip: {content : "Thonon-les-Bains (74281)
Population : 35257"} - }, - "town-97410" : { - value: "35252", - latitude: -21.033888888889, - longitude: 55.712777777778, - href : "#", - tooltip: {content : "Saint-Benoît (97410)
Population : 35252"} - }, - "town-71270" : { - value: "35118", - latitude: 46.306666666667, - longitude: 4.8319444444444, - href : "#", - tooltip: {content : "Mâcon (71270)
Population : 35118"} - }, - "town-67180" : { - value: "34913", - latitude: 48.816666666667, - longitude: 7.7877777777778, - href : "#", - tooltip: {content : "Haguenau (67180)
Population : 34913"} - }, - "town-13054" : { - value: "34773", - latitude: 43.416944444444, - longitude: 5.2147222222222, - href : "#", - tooltip: {content : "Marignane (13054)
Population : 34773"} - }, - "town-93073" : { - value: "34744", - latitude: 48.956111111111, - longitude: 2.5763888888889, - href : "#", - tooltip: {content : "Tremblay-en-France (93073)
Population : 34744"} - }, - "town-88160" : { - value: "34575", - latitude: 48.173611111111, - longitude: 6.4516666666667, - href : "#", - tooltip: {content : "Épinal (88160)
Population : 34575"} - }, - "town-91549" : { - value: "34514", - latitude: 48.637777777778, - longitude: 2.3322222222222, - href : "#", - tooltip: {content : "Sainte-Geneviève-des-Bois (91549)
Population : 34514"} - }, - "town-26281" : { - value: "34321", - latitude: 45.045555555556, - longitude: 5.0508333333333, - href : "#", - tooltip: {content : "Romans-sur-Isère (26281)
Population : 34321"} - }, - "town-13028" : { - value: "34258", - latitude: 43.176111111111, - longitude: 5.6080555555556, - href : "#", - tooltip: {content : "La Ciotat (13028)
Population : 34258"} - }, - "town-93006" : { - value: "34232", - latitude: 48.866944444444, - longitude: 2.4169444444444, - href : "#", - tooltip: {content : "Bagnolet (93006)
Population : 34232"} - }, - "town-83118" : { - value: "34220", - latitude: 43.424722222222, - longitude: 6.7677777777778, - href : "#", - tooltip: {content : "Saint-Raphaël (83118)
Population : 34220"} - }, - "town-83118" : { - value: "34220", - latitude: 43.424722222222, - longitude: 6.7677777777778, - href : "#", - tooltip: {content : "Saint-Raphaël (83118)
Population : 34220"} - }, - "town-93072" : { - value: "34048", - latitude: 48.955277777778, - longitude: 2.3822222222222, - href : "#", - tooltip: {content : "Stains (93072)
Population : 34048"} - }, - "town-60175" : { - value: "34001", - latitude: 49.257777777778, - longitude: 2.4827777777778, - href : "#", - tooltip: {content : "Creil (60175)
Population : 34001"} - }, - "town-78423" : { - value: "33899", - latitude: 48.770555555556, - longitude: 2.0325, - href : "#", - tooltip: {content : "Montigny-le-Bretonneux (78423)
Population : 33899"} - }, - "town-93050" : { - value: "33781", - latitude: 48.857777777778, - longitude: 2.5311111111111, - href : "#", - tooltip: {content : "Neuilly-sur-Marne (93050)
Population : 33781"} - }, - "town-86066" : { - value: "33420", - latitude: 46.816944444444, - longitude: 0.54527777777778, - href : "#", - tooltip: {content : "Châtellerault (86066)
Population : 33420"} - }, - "town-59122" : { - value: "33345", - latitude: 50.175833333333, - longitude: 3.2347222222222, - href : "#", - tooltip: {content : "Cambrai (59122)
Population : 33345"} - }, - "town-95252" : { - value: "33324", - latitude: 48.988055555556, - longitude: 2.2305555555556, - href : "#", - tooltip: {content : "Franconville (95252)
Population : 33324"} - }, - "town-40192" : { - value: "33124", - latitude: 43.890277777778, - longitude: -0.50055555555556, - href : "#", - tooltip: {content : "Mont-de-Marsan (40192)
Population : 33124"} - }, - "town-76217" : { - value: "32966", - latitude: 49.921666666667, - longitude: 1.0777777777778, - href : "#", - tooltip: {content : "Dieppe (76217)
Population : 32966"} - }, - "town-92020" : { - value: "32947", - latitude: 48.801111111111, - longitude: 2.2886111111111, - href : "#", - tooltip: {content : "Châtillon (92020)
Population : 32947"} - }, - "town-94058" : { - value: "32799", - latitude: 48.842222222222, - longitude: 2.5036111111111, - href : "#", - tooltip: {content : "Le Perreux-sur-Marne (94058)
Population : 32799"} - }, - "town-74012" : { - value: "32790", - latitude: 46.195, - longitude: 6.2355555555556, - href : "#", - tooltip: {content : "Annemasse (74012)
Population : 32790"} - }, - "town-92019" : { - value: "32573", - latitude: 48.765277777778, - longitude: 2.2780555555556, - href : "#", - tooltip: {content : "Châtenay-Malabry (92019)
Population : 32573"} - }, - "town-94078" : { - value: "32506", - latitude: 48.7325, - longitude: 2.4497222222222, - href : "#", - tooltip: {content : "Villeneuve-Saint-Georges (94078)
Population : 32506"} - }, - "town-91687" : { - value: "32396", - latitude: 48.669444444444, - longitude: 2.3758333333333, - href : "#", - tooltip: {content : "Viry-Châtillon (91687)
Population : 32396"} - }, - "town-62510" : { - value: "32328", - latitude: 50.421944444444, - longitude: 2.7777777777778, - href : "#", - tooltip: {content : "Liévin (62510)
Population : 32328"} - }, - "town-94052" : { - value: "31975", - latitude: 48.836666666667, - longitude: 2.4825, - href : "#", - tooltip: {content : "Nogent-sur-Marne (94052)
Population : 31975"} - }, - "town-78311" : { - value: "31849", - latitude: 48.925555555556, - longitude: 2.1883333333333, - href : "#", - tooltip: {content : "Houilles (78311)
Population : 31849"} - }, - "town-28134" : { - value: "31610", - latitude: 48.736388888889, - longitude: 1.3655555555556, - href : "#", - tooltip: {content : "Dreux (28134)
Population : 31610"} - }, - "town-54547" : { - value: "31464", - latitude: 48.656111111111, - longitude: 6.1675, - href : "#", - tooltip: {content : "Vandœuvre-lès-Nancy (54547)
Population : 31464"} - }, - "town-59392" : { - value: "31435", - latitude: 50.276944444444, - longitude: 3.9725, - href : "#", - tooltip: {content : "Maubeuge (59392)
Population : 31435"} - }, - "town-78490" : { - value: "31360", - latitude: 48.817777777778, - longitude: 1.9463888888889, - href : "#", - tooltip: {content : "Plaisir (78490)
Population : 31360"} - }, - "town-92046" : { - value: "31325", - latitude: 48.817222222222, - longitude: 2.2991666666667, - href : "#", - tooltip: {content : "Malakoff (92046)
Population : 31325"} - }, - "town-97413" : { - value: "31298", - latitude: -21.166388888889, - longitude: 55.286944444444, - href : "#", - tooltip: {content : "Saint-Leu (97413)
Population : 31298"} - }, - "town-95280" : { - value: "31237", - latitude: 49.031666666667, - longitude: 2.4736111111111, - href : "#", - tooltip: {content : "Goussainville (95280)
Population : 31237"} - }, - "town-67447" : { - value: "31218", - latitude: 48.606944444444, - longitude: 7.7491666666667, - href : "#", - tooltip: {content : "Schiltigheim (67447)
Population : 31218"} - }, - "town-91477" : { - value: "31175", - latitude: 48.718333333333, - longitude: 2.2497222222222, - href : "#", - tooltip: {content : "Palaiseau (91477)
Population : 31175"} - }, - "town-78440" : { - value: "31116", - latitude: 48.993055555556, - longitude: 1.9083333333333, - href : "#", - tooltip: {content : "Les Mureaux (78440)
Population : 31116"} - }, - "town-95500" : { - value: "31011", - latitude: 49.050833333333, - longitude: 2.1008333333333, - href : "#", - tooltip: {content : "Pontoise (95500)
Population : 31011"} - }, - "town-24322" : { - value: "31000", - latitude: 45.184166666667, - longitude: 0.71805555555556, - href : "#", - tooltip: {content : "Périgueux (24322)
Population : 31000"} - }, - "town-91027" : { - value: "30845", - latitude: 48.708611111111, - longitude: 2.3891666666667, - href : "#", - tooltip: {content : "Athis-Mons (91027)
Population : 30845"} - }, - "town-97408" : { - value: "30784", - latitude: -20.926388888889, - longitude: 55.335833333333, - href : "#", - tooltip: {content : "La Possession (97408)
Population : 30784"} - }, - "town-97103" : { - value: "30775", - latitude: 16.2675, - longitude: -61.586944444444, - href : "#", - tooltip: {content : "Baie-Mahault (97103)
Population : 30775"} - }, - "town-69282" : { - value: "30672", - latitude: 45.766388888889, - longitude: 5.0027777777778, - href : "#", - tooltip: {content : "Meyzieu (69282)
Population : 30672"} - }, - "town-78146" : { - value: "30667", - latitude: 48.890555555556, - longitude: 2.1569444444444, - href : "#", - tooltip: {content : "Chatou (78146)
Population : 30667"} - }, - "town-94038" : { - value: "30588", - latitude: 48.779166666667, - longitude: 2.3372222222222, - href : "#", - tooltip: {content : "L'Haÿ-les-Roses (94038)
Population : 30588"} - }, - "town-92064" : { - value: "30416", - latitude: 48.846388888889, - longitude: 2.2152777777778, - href : "#", - tooltip: {content : "Saint-Cloud (92064)
Population : 30416"} - }, - "town-69286" : { - value: "30375", - latitude: 45.820555555556, - longitude: 4.8975, - href : "#", - tooltip: {content : "Rillieux-la-Pape (69286)
Population : 30375"} - }, - "town-84031" : { - value: "30360", - latitude: 44.055, - longitude: 5.0480555555556, - href : "#", - tooltip: {content : "Carpentras (84031)
Population : 30360"} - }, - "town-97418" : { - value: "30293", - latitude: -20.896944444444, - longitude: 55.549166666667, - href : "#", - tooltip: {content : "Sainte-Marie (97418)
Population : 30293"} - }, - "town-06123" : { - value: "30235", - latitude: 43.673333333333, - longitude: 7.19, - href : "#", - tooltip: {content : "Saint-Laurent-du-Var (06123)
Population : 30235"} - }, - "town-38544" : { - value: "30169", - latitude: 45.525555555556, - longitude: 4.8747222222222, - href : "#", - tooltip: {content : "Vienne (38544)
Population : 30169"} - }, - "town-93014" : { - value: "29998", - latitude: 48.909166666667, - longitude: 2.5472222222222, - href : "#", - tooltip: {content : "Clichy-sous-Bois (93014)
Population : 29998"} - }, - "town-94073" : { - value: "29949", - latitude: 48.764444444444, - longitude: 2.3913888888889, - href : "#", - tooltip: {content : "Thiais (94073)
Population : 29949"} - }, - "town-02722" : { - value: "29846", - latitude: 49.381111111111, - longitude: 3.3225, - href : "#", - tooltip: {content : "Soissons (02722)
Population : 29846"} - }, - "town-84087" : { - value: "29791", - latitude: 44.1375, - longitude: 4.8088888888889, - href : "#", - tooltip: {content : "Orange (84087)
Population : 29791"} - }, - "town-78621" : { - value: "29705", - latitude: 48.776666666667, - longitude: 2.0016666666667, - href : "#", - tooltip: {content : "Trappes (78621)
Population : 29705"} - }, - "town-78158" : { - value: "29682", - latitude: 48.820277777778, - longitude: 2.1302777777778, - href : "#", - tooltip: {content : "Le Chesnay (78158)
Population : 29682"} - }, - "town-15014" : { - value: "29677", - latitude: 44.925277777778, - longitude: 2.4397222222222, - href : "#", - tooltip: {content : "Aurillac (15014)
Population : 29677"} - }, - "town-94018" : { - value: "29664", - latitude: 48.821388888889, - longitude: 2.4119444444444, - href : "#", - tooltip: {content : "Charenton-le-Pont (94018)
Population : 29664"} - }, - "town-92009" : { - value: "29519", - latitude: 48.9175, - longitude: 2.2683333333333, - href : "#", - tooltip: {content : "Bois-Colombes (92009)
Population : 29519"} - }, - "town-76681" : { - value: "29518", - latitude: 49.408611111111, - longitude: 1.0891666666667, - href : "#", - tooltip: {content : "Sotteville-lès-Rouen (76681)
Population : 29518"} - }, - "town-91691" : { - value: "29392", - latitude: 48.716111111111, - longitude: 2.4908333333333, - href : "#", - tooltip: {content : "Yerres (91691)
Population : 29392"} - }, - "town-06083" : { - value: "29389", - latitude: 43.774722222222, - longitude: 7.4997222222222, - href : "#", - tooltip: {content : "Menton (06083)
Population : 29389"} - }, - "town-33550" : { - value: "28905", - latitude: 44.779444444444, - longitude: -0.56694444444444, - href : "#", - tooltip: {content : "Villenave-d'Ornon (33550)
Population : 28905"} - }, - "town-59328" : { - value: "28870", - latitude: 50.649444444444, - longitude: 3.0241666666667, - href : "#", - tooltip: {content : "Lambersart (59328)
Population : 28870"} - }, - "town-77445" : { - value: "28838", - latitude: 48.575833333333, - longitude: 2.5827777777778, - href : "#", - tooltip: {content : "Savigny-le-Temple (77445)
Population : 28838"} - }, - "town-91201" : { - value: "28802", - latitude: 48.686111111111, - longitude: 2.4094444444444, - href : "#", - tooltip: {content : "Draveil (91201)
Population : 28802"} - }, - "town-49328" : { - value: "28772", - latitude: 47.259166666667, - longitude: -0.078055555555556, - href : "#", - tooltip: {content : "Saumur (49328)
Population : 28772"} - }, - "town-24037" : { - value: "28691", - latitude: 44.851111111111, - longitude: 0.48194444444444, - href : "#", - tooltip: {content : "Bergerac (24037)
Population : 28691"} - }, - "town-76575" : { - value: "28601", - latitude: 49.377777777778, - longitude: 1.1041666666667, - href : "#", - tooltip: {content : "Saint-Étienne-du-Rouvray (76575)
Population : 28601"} - }, - "town-94016" : { - value: "28550", - latitude: 48.791944444444, - longitude: 2.3319444444444, - href : "#", - tooltip: {content : "Cachan (94016)
Population : 28550"} - }, - "town-78297" : { - value: "28518", - latitude: 48.770555555556, - longitude: 2.0730555555556, - href : "#", - tooltip: {content : "Guyancourt (78297)
Population : 28518"} - }, - "town-06155" : { - value: "28450", - latitude: 43.579722222222, - longitude: 7.0533333333333, - href : "#", - tooltip: {content : "Vallauris (06155)
Population : 28450"} - }, - "town-73008" : { - value: "28439", - latitude: 45.688611111111, - longitude: 5.915, - href : "#", - tooltip: {content : "Aix-les-Bains (73008)
Population : 28439"} - }, - "town-97307" : { - value: "28407", - latitude: 4.8505555555556, - longitude: -52.331111111111, - href : "#", - tooltip: {content : "Matoury (97307)
Population : 28407"} - }, - "town-33449" : { - value: "28396", - latitude: 44.895555555556, - longitude: -0.7175, - href : "#", - tooltip: {content : "Saint-Médard-en-Jalles (33449)
Population : 28396"} - }, - "town-95063" : { - value: "28277", - latitude: 48.925555555556, - longitude: 2.2169444444444, - href : "#", - tooltip: {content : "Bezons (95063)
Population : 28277"} - }, - "town-93077" : { - value: "28257", - latitude: 48.890277777778, - longitude: 2.5111111111111, - href : "#", - tooltip: {content : "Villemomble (93077)
Population : 28257"} - }, - "town-93059" : { - value: "28076", - latitude: 48.964722222222, - longitude: 2.3608333333333, - href : "#", - tooltip: {content : "Pierrefitte-sur-Seine (93059)
Population : 28076"} - }, - "town-92060" : { - value: "27931", - latitude: 48.783333333333, - longitude: 2.2636111111111, - href : "#", - tooltip: {content : "Le Plessis-Robinson (92060)
Population : 27931"} - }, - "town-92035" : { - value: "27923", - latitude: 48.905, - longitude: 2.2436111111111, - href : "#", - tooltip: {content : "La Garenne-Colombes (92035)
Population : 27923"} - }, - "town-61001" : { - value: "27863", - latitude: 48.429722222222, - longitude: 0.091944444444444, - href : "#", - tooltip: {content : "Alençon (61001)
Population : 27863"} - }, - "town-95219" : { - value: "27713", - latitude: 48.991388888889, - longitude: 2.2594444444444, - href : "#", - tooltip: {content : "Ermont (95219)
Population : 27713"} - }, - "town-91521" : { - value: "27689", - latitude: 48.651111111111, - longitude: 2.4130555555556, - href : "#", - tooltip: {content : "Ris-Orangis (91521)
Population : 27689"} - }, - "town-18279" : { - value: "27675", - latitude: 47.221944444444, - longitude: 2.0683333333333, - href : "#", - tooltip: {content : "Vierzon (18279)
Population : 27675"} - }, - "town-94079" : { - value: "27568", - latitude: 48.8275, - longitude: 2.5447222222222, - href : "#", - tooltip: {content : "Villiers-sur-Marne (94079)
Population : 27568"} - }, - "town-67218" : { - value: "27556", - latitude: 48.524722222222, - longitude: 7.7144444444444, - href : "#", - tooltip: {content : "Illkirch-Graffenstaden (67218)
Population : 27556"} - }, - "town-91657" : { - value: "27546", - latitude: 48.700277777778, - longitude: 2.4172222222222, - href : "#", - tooltip: {content : "Vigneux-sur-Seine (91657)
Population : 27546"} - }, - "town-17415" : { - value: "27430", - latitude: 45.745277777778, - longitude: -0.63444444444444, - href : "#", - tooltip: {content : "Saintes (17415)
Population : 27430"} - }, - "town-92075" : { - value: "27314", - latitude: 48.82, - longitude: 2.2888888888889, - href : "#", - tooltip: {content : "Vanves (92075)
Population : 27314"} - }, - "town-78208" : { - value: "27262", - latitude: 48.783888888889, - longitude: 1.9580555555556, - href : "#", - tooltip: {content : "Élancourt (78208)
Population : 27262"} - }, - "town-95680" : { - value: "27004", - latitude: 49.008888888889, - longitude: 2.3902777777778, - href : "#", - tooltip: {content : "Villiers-le-Bel (95680)
Population : 27004"} - }, - "town-78517" : { - value: "27001", - latitude: 48.643611111111, - longitude: 1.83, - href : "#", - tooltip: {content : "Rambouillet (78517)
Population : 27001"} - }, - "town-02408" : { - value: "26991", - latitude: 49.563333333333, - longitude: 3.6236111111111, - href : "#", - tooltip: {content : "Laon (02408)
Population : 26991"} - }, - "town-38053" : { - value: "26841", - latitude: 45.590833333333, - longitude: 5.2791666666667, - href : "#", - tooltip: {content : "Bourgoin-Jallieu (38053)
Population : 26841"} - }, - "town-91286" : { - value: "26796", - latitude: 48.656666666667, - longitude: 2.3880555555556, - href : "#", - tooltip: {content : "Grigny (91286)
Population : 26796"} - }, - "town-97113" : { - value: "26743", - latitude: 16.205555555556, - longitude: -61.491944444444, - href : "#", - tooltip: {content : "Le Gosier (97113)
Population : 26743"} - }, - "town-62427" : { - value: "26728", - latitude: 50.421111111111, - longitude: 2.95, - href : "#", - tooltip: {content : "Hénin-Beaumont (62427)
Population : 26728"} - }, - "town-95582" : { - value: "26659", - latitude: 48.971666666667, - longitude: 2.2569444444444, - href : "#", - tooltip: {content : "Sannois (95582)
Population : 26659"} - }, - "town-95277" : { - value: "26627", - latitude: 48.986666666667, - longitude: 2.4486111111111, - href : "#", - tooltip: {content : "Gonesse (95277)
Population : 26627"} - }, - "town-52448" : { - value: "26549", - latitude: 48.637777777778, - longitude: 4.9488888888889, - href : "#", - tooltip: {content : "Saint-Dizier (52448)
Population : 26549"} - }, - "town-95306" : { - value: "26533", - latitude: 48.990277777778, - longitude: 2.1655555555556, - href : "#", - tooltip: {content : "Herblay (95306)
Population : 26533"} - }, - "town-62119" : { - value: "26530", - latitude: 50.529722222222, - longitude: 2.64, - href : "#", - tooltip: {content : "Béthune (62119)
Population : 26530"} - }, - "town-25388" : { - value: "26501", - latitude: 47.509722222222, - longitude: 6.7983333333333, - href : "#", - tooltip: {content : "Montbéliard (25388)
Population : 26501"} - }, - "town-94034" : { - value: "26446", - latitude: 48.758888888889, - longitude: 2.3236111111111, - href : "#", - tooltip: {content : "Fresnes (94034)
Population : 26446"} - }, - "town-95607" : { - value: "26440", - latitude: 49.025833333333, - longitude: 2.2266666666667, - href : "#", - tooltip: {content : "Taverny (95607)
Population : 26440"} - }, - "town-83062" : { - value: "26321", - latitude: 43.124722222222, - longitude: 6.0105555555556, - href : "#", - tooltip: {content : "La Garde (83062)
Population : 26321"} - }, - "town-27681" : { - value: "26306", - latitude: 49.091666666667, - longitude: 1.485, - href : "#", - tooltip: {content : "Vernon (27681)
Population : 26306"} - }, - "town-94043" : { - value: "26267", - latitude: 48.81, - longitude: 2.3580555555556, - href : "#", - tooltip: {content : "Le Kremlin-Bicêtre (94043)
Population : 26267"} - }, - "town-94071" : { - value: "26150", - latitude: 48.769722222222, - longitude: 2.5227777777778, - href : "#", - tooltip: {content : "Sucy-en-Brie (94071)
Population : 26150"} - }, - "town-93063" : { - value: "26025", - latitude: 48.883611111111, - longitude: 2.4361111111111, - href : "#", - tooltip: {content : "Romainville (93063)
Population : 26025"} - }, - "town-64122" : { - value: "25994", - latitude: 43.480555555556, - longitude: -1.5572222222222, - href : "#", - tooltip: {content : "Biarritz (64122)
Population : 25994"} - }, - "town-69275" : { - value: "25988", - latitude: 45.768611111111, - longitude: 4.9588888888889, - href : "#", - tooltip: {content : "Décines-Charpieu (69275)
Population : 25988"} - }, - "town-12202" : { - value: "25974", - latitude: 44.35, - longitude: 2.5741666666667, - href : "#", - tooltip: {content : "Rodez (12202)
Population : 25974"} - }, - "town-17299" : { - value: "25962", - latitude: 45.941944444444, - longitude: -0.9669444444444401, - href : "#", - tooltip: {content : "Rochefort (17299)
Population : 25962"} - }, - "town-31557" : { - value: "25854", - latitude: 43.584444444444, - longitude: 1.3436111111111, - href : "#", - tooltip: {content : "Tournefeuille (31557)
Population : 25854"} - }, - "town-44190" : { - value: "25832", - latitude: 47.207222222222, - longitude: -1.5025, - href : "#", - tooltip: {content : "Saint-Sébastien-sur-Loire (44190)
Population : 25832"} - }, - "town-13063" : { - value: "25823", - latitude: 43.581388888889, - longitude: 5.0013888888889, - href : "#", - tooltip: {content : "Miramas (13063)
Population : 25823"} - }, - "town-59017" : { - value: "25786", - latitude: 50.687222222222, - longitude: 2.8802777777778, - href : "#", - tooltip: {content : "Armentières (59017)
Population : 25786"} - }, - "town-91114" : { - value: "25785", - latitude: 48.698055555556, - longitude: 2.5033333333333, - href : "#", - tooltip: {content : "Brunoy (91114)
Population : 25785"} - }, - "town-39198" : { - value: "25776", - latitude: 47.092222222222, - longitude: 5.4897222222222, - href : "#", - tooltip: {content : "Dole (39198)
Population : 25776"} - }, - "town-89387" : { - value: "25676", - latitude: 48.197222222222, - longitude: 3.2833333333333, - href : "#", - tooltip: {content : "Sens (89387)
Population : 25676"} - }, - "town-34145" : { - value: "25509", - latitude: 43.676944444444, - longitude: 4.1352777777778, - href : "#", - tooltip: {content : "Lunel (34145)
Population : 25509"} - }, - "town-93047" : { - value: "25499", - latitude: 48.898333333333, - longitude: 2.5647222222222, - href : "#", - tooltip: {content : "Montfermeil (93047)
Population : 25499"} - }, - "town-84035" : { - value: "25440", - latitude: 43.836666666667, - longitude: 5.0372222222222, - href : "#", - tooltip: {content : "Cavaillon (84035)
Population : 25440"} - }, - "town-69149" : { - value: "25413", - latitude: 45.714166666667, - longitude: 4.8075, - href : "#", - tooltip: {content : "Oullins (69149)
Population : 25413"} - }, - "town-97304" : { - value: "25404", - latitude: 5.1583333333333, - longitude: -52.642777777778, - href : "#", - tooltip: {content : "Kourou (97304)
Population : 25404"} - }, - "town-92078" : { - value: "25374", - latitude: 48.937222222222, - longitude: 2.3277777777778, - href : "#", - tooltip: {content : "Villeneuve-la-Garenne (92078)
Population : 25374"} - }, - "town-03310" : { - value: "25235", - latitude: 46.126944444444, - longitude: 3.4258333333333, - href : "#", - tooltip: {content : "Vichy (03310)
Population : 25235"} - }, - "town-44114" : { - value: "25216", - latitude: 47.270833333333, - longitude: -1.6236111111111, - href : "#", - tooltip: {content : "Orvault (44114)
Population : 25216"} - }, - "town-33039" : { - value: "25205", - latitude: 44.807777777778, - longitude: -0.54888888888889, - href : "#", - tooltip: {content : "Bègles (33039)
Population : 25205"} - }, - "town-76322" : { - value: "25189", - latitude: 49.406388888889, - longitude: 1.0522222222222, - href : "#", - tooltip: {content : "Le Grand-Quevilly (76322)
Population : 25189"} - }, - "town-91692" : { - value: "25055", - latitude: 48.682222222222, - longitude: 2.1675, - href : "#", - tooltip: {content : "Les Ulis (91692)
Population : 25055"} - }, - "town-33529" : { - value: "25018", - latitude: 44.6325, - longitude: -1.145, - href : "#", - tooltip: {content : "La Teste-de-Buch (33529)
Population : 25018"} - }, - "town-34003" : { - value: "24972", - latitude: 43.31, - longitude: 3.4752777777778, - href : "#", - tooltip: {content : "Agde (34003)
Population : 24972"} - }, - "town-80001" : { - value: "24953", - latitude: 50.105277777778, - longitude: 1.8352777777778, - href : "#", - tooltip: {content : "Abbeville (80001)
Population : 24953"} - }, - "town-51230" : { - value: "24733", - latitude: 49.04, - longitude: 3.9591666666667, - href : "#", - tooltip: {content : "Épernay (51230)
Population : 24733"} - }, - "town-47323" : { - value: "24700", - latitude: 44.406944444444, - longitude: 0.70416666666667, - href : "#", - tooltip: {content : "Villeneuve-sur-Lot (47323)
Population : 24700"} - }, - "town-31395" : { - value: "24653", - latitude: 43.460277777778, - longitude: 1.3258333333333, - href : "#", - tooltip: {content : "Muret (31395)
Population : 24653"} - }, - "town-77083" : { - value: "24636", - latitude: 48.852777777778, - longitude: 2.6019444444444, - href : "#", - tooltip: {content : "Champs-sur-Marne (77083)
Population : 24636"} - }, - "town-97128" : { - value: "24611", - latitude: 16.225555555556, - longitude: -61.386111111111, - href : "#", - tooltip: {content : "Sainte-Anne (97128)
Population : 24611"} - }, - "town-52121" : { - value: "24500", - latitude: 48.110833333333, - longitude: 5.1386111111111, - href : "#", - tooltip: {content : "Chaumont (52121)
Population : 24500"} - }, - "town-95203" : { - value: "24386", - latitude: 48.991388888889, - longitude: 2.2797222222222, - href : "#", - tooltip: {content : "Eaubonne (95203)
Population : 24386"} - }, - "town-33243" : { - value: "24302", - latitude: 44.915277777778, - longitude: -0.24388888888889, - href : "#", - tooltip: {content : "Libourne (33243)
Population : 24302"} - }, - "town-77514" : { - value: "24296", - latitude: 48.942777777778, - longitude: 2.6063888888889, - href : "#", - tooltip: {content : "Villeparisis (77514)
Population : 24296"} - }, - "town-97222" : { - value: "24095", - latitude: 14.6775, - longitude: -60.939166666667, - href : "#", - tooltip: {content : "Le Robert (97222)
Population : 24095"} - }, - "town-95572" : { - value: "23889", - latitude: 49.044166666667, - longitude: 2.1102777777778, - href : "#", - tooltip: {content : "Saint-Ouen-l'Aumône (95572)
Population : 23889"} - }, - "town-62178" : { - value: "23869", - latitude: 50.481111111111, - longitude: 2.5477777777778, - href : "#", - tooltip: {content : "Bruay-la-Buissière (62178)
Population : 23869"} - }, - "town-91103" : { - value: "23812", - latitude: 48.609444444444, - longitude: 2.3077777777778, - href : "#", - tooltip: {content : "Brétigny-sur-Orge (91103)
Population : 23812"} - }, - "town-77058" : { - value: "23663", - latitude: 48.841666666667, - longitude: 2.6977777777778, - href : "#", - tooltip: {content : "Bussy-Saint-Georges (77058)
Population : 23663"} - }, - "town-97118" : { - value: "23606", - latitude: 16.191388888889, - longitude: -61.590277777778, - href : "#", - tooltip: {content : "Petit-Bourg (97118)
Population : 23606"} - }, - "town-92032" : { - value: "23603", - latitude: 48.789166666667, - longitude: 2.2855555555556, - href : "#", - tooltip: {content : "Fontenay-aux-Roses (92032)
Population : 23603"} - }, - "town-91223" : { - value: "23575", - latitude: 48.435, - longitude: 2.1622222222222, - href : "#", - tooltip: {content : "Étampes (91223)
Population : 23575"} - }, - "town-33192" : { - value: "23546", - latitude: 44.771388888889, - longitude: -0.61694444444444, - href : "#", - tooltip: {content : "Gradignan (33192)
Population : 23546"} - }, - "town-33069" : { - value: "23539", - latitude: 44.864722222222, - longitude: -0.59861111111111, - href : "#", - tooltip: {content : "Le Bouscat (33069)
Population : 23539"} - }, - "town-92072" : { - value: "23412", - latitude: 48.823055555556, - longitude: 2.2108333333333, - href : "#", - tooltip: {content : "Sèvres (92072)
Population : 23412"} - }, - "town-95176" : { - value: "23318", - latitude: 48.973055555556, - longitude: 2.2005555555556, - href : "#", - tooltip: {content : "Cormeilles-en-Parisis (95176)
Population : 23318"} - }, - "town-01283" : { - value: "23308", - latitude: 46.255555555556, - longitude: 5.655, - href : "#", - tooltip: {content : "Oyonnax (01283)
Population : 23308"} - }, - "town-78358" : { - value: "23287", - latitude: 48.946111111111, - longitude: 2.145, - href : "#", - tooltip: {content : "Maisons-Laffitte (78358)
Population : 23287"} - }, - "town-71153" : { - value: "23186", - latitude: 46.800555555556, - longitude: 4.4402777777778, - href : "#", - tooltip: {content : "Le Creusot (71153)
Population : 23186"} - }, - "town-21054" : { - value: "23135", - latitude: 47.024166666667, - longitude: 4.8388888888889, - href : "#", - tooltip: {content : "Beaune (21054)
Population : 23135"} - }, - "town-91421" : { - value: "23131", - latitude: 48.7075, - longitude: 2.4552777777778, - href : "#", - tooltip: {content : "Montgeron (91421)
Population : 23131"} - }, - "town-57480" : { - value: "23049", - latitude: 49.099722222222, - longitude: 6.1533333333333, - href : "#", - tooltip: {content : "Montigny-lès-Metz (57480)
Population : 23049"} - }, - "town-32013" : { - value: "22931", - latitude: 43.645277777778, - longitude: 0.58861111111111, - href : "#", - tooltip: {content : "Auch (32013)
Population : 22931"} - }, - "town-59155" : { - value: "22918", - latitude: 51.024722222222, - longitude: 2.3908333333333, - href : "#", - tooltip: {content : "Coudekerque-Branche (59155)
Population : 22918"} - }, - "town-04112" : { - value: "22852", - latitude: 43.833333333333, - longitude: 5.7830555555556, - href : "#", - tooltip: {content : "Manosque (04112)
Population : 22852"} - }, - "town-12145" : { - value: "22775", - latitude: 44.097777777778, - longitude: 3.0777777777778, - href : "#", - tooltip: {content : "Millau (12145)
Population : 22775"} - }, - "town-59368" : { - value: "22758", - latitude: 50.655277777778, - longitude: 3.0702777777778, - href : "#", - tooltip: {content : "La Madeleine (59368)
Population : 22758"} - }, - "town-56098" : { - value: "22744", - latitude: 47.763333333333, - longitude: -3.3388888888889, - href : "#", - tooltip: {content : "Lanester (56098)
Population : 22744"} - }, - "town-34108" : { - value: "22743", - latitude: 43.447222222222, - longitude: 3.7555555555556, - href : "#", - tooltip: {content : "Frontignan (34108)
Population : 22743"} - }, - "town-97117" : { - value: "22716", - latitude: 16.331111111111, - longitude: -61.343611111111, - href : "#", - tooltip: {content : "Le Moule (97117)
Population : 22716"} - }, - "town-94067" : { - value: "22666", - latitude: 48.841388888889, - longitude: 2.4177777777778, - href : "#", - tooltip: {content : "Saint-Mandé (94067)
Population : 22666"} - }, - "town-77468" : { - value: "22639", - latitude: 48.850277777778, - longitude: 2.6508333333333, - href : "#", - tooltip: {content : "Torcy (77468)
Population : 22639"} - }, - "town-97420" : { - value: "22627", - latitude: -20.905555555556, - longitude: 55.607222222222, - href : "#", - tooltip: {content : "Sainte-Suzanne (97420)
Population : 22627"} - }, - "town-33119" : { - value: "22588", - latitude: 44.856944444444, - longitude: -0.53277777777778, - href : "#", - tooltip: {content : "Cenon (33119)
Population : 22588"} - }, - "town-14366" : { - value: "22547", - latitude: 49.145555555556, - longitude: 0.22555555555556, - href : "#", - tooltip: {content : "Lisieux (14366)
Population : 22547"} - }, - "town-77390" : { - value: "22514", - latitude: 48.791111111111, - longitude: 2.6513888888889, - href : "#", - tooltip: {content : "Roissy-en-Brie (77390)
Population : 22514"} - }, - "town-06079" : { - value: "22498", - latitude: 43.545555555556, - longitude: 6.9375, - href : "#", - tooltip: {content : "Mandelieu-la-Napoule (06079)
Population : 22498"} - }, - "town-38169" : { - value: "22485", - latitude: 45.193055555556, - longitude: 5.6847222222222, - href : "#", - tooltip: {content : "Fontaine (38169)
Population : 22485"} - }, - "town-93045" : { - value: "22410", - latitude: 48.88, - longitude: 2.4169444444444, - href : "#", - tooltip: {content : "Les Lilas (93045)
Population : 22410"} - }, - "town-69202" : { - value: "22229", - latitude: 45.733611111111, - longitude: 4.8025, - href : "#", - tooltip: {content : "Sainte-Foy-lès-Lyon (69202)
Population : 22229"} - }, - "town-88413" : { - value: "22225", - latitude: 48.284166666667, - longitude: 6.9491666666667, - href : "#", - tooltip: {content : "Saint-Dié-des-Vosges (88413)
Population : 22225"} - }, - "town-76498" : { - value: "22215", - latitude: 49.430555555556, - longitude: 1.0527777777778, - href : "#", - tooltip: {content : "Le Petit-Quevilly (76498)
Population : 22215"} - }, - "town-31069" : { - value: "22119", - latitude: 43.635555555556, - longitude: 1.39, - href : "#", - tooltip: {content : "Blagnac (31069)
Population : 22119"} - }, - "town-44215" : { - value: "22117", - latitude: 47.168055555556, - longitude: -1.4713888888889, - href : "#", - tooltip: {content : "Vertou (44215)
Population : 22117"} - }, - "town-57631" : { - value: "22094", - latitude: 49.110555555556, - longitude: 7.0672222222222, - href : "#", - tooltip: {content : "Sarreguemines (57631)
Population : 22094"} - }, - "town-59295" : { - value: "22086", - latitude: 50.724444444444, - longitude: 2.5383333333333, - href : "#", - tooltip: {content : "Hazebrouck (59295)
Population : 22086"} - }, - "town-59360" : { - value: "22081", - latitude: 50.612222222222, - longitude: 3.0136111111111, - href : "#", - tooltip: {content : "Loos (59360)
Population : 22081"} - }, - "town-59410" : { - value: "22036", - latitude: 50.641944444444, - longitude: 3.1077777777778, - href : "#", - tooltip: {content : "Mons-en-Barœul (59410)
Population : 22036"} - }, - "town-93057" : { - value: "21972", - latitude: 48.905833333333, - longitude: 2.5105555555556, - href : "#", - tooltip: {content : "Les Pavillons-sous-Bois (93057)
Population : 21972"} - }, - "town-57227" : { - value: "21920", - latitude: 49.188055555556, - longitude: 6.9, - href : "#", - tooltip: {content : "Forbach (57227)
Population : 21920"} - }, - "town-76108" : { - value: "21876", - latitude: 49.460555555556, - longitude: 1.1080555555556, - href : "#", - tooltip: {content : "Bois-Guillaume (76108)
Population : 21876"} - }, - "town-76108" : { - value: "21876", - latitude: 49.460555555556, - longitude: 1.1080555555556, - href : "#", - tooltip: {content : "Bois-Guillaume - Bihorel (76108)
Population : 21876"} - }, - "town-77122" : { - value: "21845", - latitude: 48.661944444444, - longitude: 2.5630555555556, - href : "#", - tooltip: {content : "Combs-la-Ville (77122)
Population : 21845"} - }, - "town-14327" : { - value: "21829", - latitude: 49.203611111111, - longitude: -0.32638888888889, - href : "#", - tooltip: {content : "Hérouville-Saint-Clair (14327)
Population : 21829"} - }, - "town-95197" : { - value: "21741", - latitude: 48.975, - longitude: 2.3286111111111, - href : "#", - tooltip: {content : "Deuil-la-Barre (95197)
Population : 21741"} - }, - "town-40088" : { - value: "21702", - latitude: 43.706944444444, - longitude: -1.0513888888889, - href : "#", - tooltip: {content : "Dax (40088)
Population : 21702"} - }, - "town-94054" : { - value: "21691", - latitude: 48.743611111111, - longitude: 2.3927777777778, - href : "#", - tooltip: {content : "Orly (94054)
Population : 21691"} - }, - "town-91345" : { - value: "21574", - latitude: 48.696944444444, - longitude: 2.2955555555556, - href : "#", - tooltip: {content : "Longjumeau (91345)
Population : 21574"} - }, - "town-95428" : { - value: "21475", - latitude: 48.989722222222, - longitude: 2.3219444444444, - href : "#", - tooltip: {content : "Montmorency (95428)
Population : 21475"} - }, - "town-45147" : { - value: "21450", - latitude: 47.931944444444, - longitude: 1.9211111111111, - href : "#", - tooltip: {content : "Fleury-les-Aubrais (45147)
Population : 21450"} - }, - "town-78126" : { - value: "21374", - latitude: 48.85, - longitude: 2.145, - href : "#", - tooltip: {content : "La Celle-Saint-Cloud (78126)
Population : 21374"} - }, - "town-46042" : { - value: "21333", - latitude: 44.4475, - longitude: 1.4405555555556, - href : "#", - tooltip: {content : "Cahors (46042)
Population : 21333"} - }, - "town-91272" : { - value: "21259", - latitude: 48.701388888889, - longitude: 2.1336111111111, - href : "#", - tooltip: {content : "Gif-sur-Yvette (91272)
Population : 21259"} - }, - "town-59271" : { - value: "21235", - latitude: 51.013055555556, - longitude: 2.3022222222222, - href : "#", - tooltip: {content : "Grande-Synthe (59271)
Population : 21235"} - }, - "town-97229" : { - value: "21209", - latitude: 14.616111111111, - longitude: -61.101388888889, - href : "#", - tooltip: {content : "Schœlcher (97229)
Population : 21209"} - }, - "town-91434" : { - value: "21113", - latitude: 48.663333333333, - longitude: 2.3513888888889, - href : "#", - tooltip: {content : "Morsang-sur-Orge (91434)
Population : 21113"} - }, - "town-83144" : { - value: "21035", - latitude: 43.137222222222, - longitude: 5.9825, - href : "#", - tooltip: {content : "La Valette-du-Var (83144)
Population : 21035"} - }, - "town-22113" : { - value: "20983", - latitude: 48.7325, - longitude: -3.4552777777778, - href : "#", - tooltip: {content : "Lannion (22113)
Population : 20983"} - }, - "town-69204" : { - value: "20982", - latitude: 45.695277777778, - longitude: 4.7930555555556, - href : "#", - tooltip: {content : "Saint-Genis-Laval (69204)
Population : 20982"} - }, - "town-59163" : { - value: "20962", - latitude: 50.674722222222, - longitude: 3.1538888888889, - href : "#", - tooltip: {content : "Croix (59163)
Population : 20962"} - }, - "town-77152" : { - value: "20923", - latitude: 48.515277777778, - longitude: 2.6344444444444, - href : "#", - tooltip: {content : "Dammarie-les-Lys (77152)
Population : 20923"} - }, - "town-74011" : { - value: "20881", - latitude: 45.919166666667, - longitude: 6.1419444444444, - href : "#", - tooltip: {content : "Annecy-le-Vieux (74011)
Population : 20881"} - }, - "town-77285" : { - value: "20830", - latitude: 48.5375, - longitude: 2.6319444444444, - href : "#", - tooltip: {content : "Le Mée-sur-Seine (77285)
Population : 20830"} - }, - "town-13041" : { - value: "20799", - latitude: 43.454444444444, - longitude: 5.4761111111111, - href : "#", - tooltip: {content : "Gardanne (13041)
Population : 20799"} - }, - "town-93049" : { - value: "20683", - latitude: 48.860833333333, - longitude: 2.5097222222222, - href : "#", - tooltip: {content : "Neuilly-Plaisance (93049)
Population : 20683"} - }, - "town-35115" : { - value: "20637", - latitude: 48.351666666667, - longitude: -1.2, - href : "#", - tooltip: {content : "Fougères (35115)
Population : 20637"} - }, - "town-77350" : { - value: "20598", - latitude: 48.769166666667, - longitude: 2.6791666666667, - href : "#", - tooltip: {content : "Ozoir-la-Ferrière (77350)
Population : 20598"} - }, - "town-38563" : { - value: "20573", - latitude: 45.363333333333, - longitude: 5.59, - href : "#", - tooltip: {content : "Voiron (38563)
Population : 20573"} - }, - "town-77243" : { - value: "20538", - latitude: 48.878055555556, - longitude: 2.7066666666667, - href : "#", - tooltip: {content : "Lagny-sur-Marne (77243)
Population : 20538"} - }, - "town-59172" : { - value: "20523", - latitude: 50.328611111111, - longitude: 3.395, - href : "#", - tooltip: {content : "Denain (59172)
Population : 20523"} - }, - "town-68297" : { - value: "20481", - latitude: 47.585277777778, - longitude: 7.565, - href : "#", - tooltip: {content : "Saint-Louis (68297)
Population : 20481"} - }, - "town-97129" : { - value: "20443", - latitude: 16.333055555556, - longitude: -61.698055555556, - href : "#", - tooltip: {content : "Sainte-Rose (97129)
Population : 20443"} - }, - "town-59279" : { - value: "20370", - latitude: 50.782777777778, - longitude: 3.1247222222222, - href : "#", - tooltip: {content : "Halluin (59279)
Population : 20370"} - }, - "town-78640" : { - value: "20348", - latitude: 48.783333333333, - longitude: 2.1883333333333, - href : "#", - tooltip: {content : "Vélizy-Villacoublay (78640)
Population : 20348"} - }, - "town-91570" : { - value: "20345", - latitude: 48.6325, - longitude: 2.3027777777778, - href : "#", - tooltip: {content : "Saint-Michel-sur-Orge (91570)
Population : 20345"} - }, - "town-95555" : { - value: "20326", - latitude: 48.971111111111, - longitude: 2.2819444444444, - href : "#", - tooltip: {content : "Saint-Gratien (95555)
Population : 20326"} - }, - "town-92014" : { - value: "20303", - latitude: 48.778055555556, - longitude: 2.3158333333333, - href : "#", - tooltip: {content : "Bourg-la-Reine (92014)
Population : 20303"} - }, - "town-59646" : { - value: "20293", - latitude: 50.668611111111, - longitude: 3.13, - href : "#", - tooltip: {content : "Wasquehal (59646)
Population : 20293"} - }, - "town-54329" : { - value: "20286", - latitude: 48.589444444444, - longitude: 6.5016666666667, - href : "#", - tooltip: {content : "Lunéville (54329)
Population : 20286"} - }, - "town-33249" : { - value: "20271", - latitude: 44.879166666667, - longitude: -0.5216666666666701, - href : "#", - tooltip: {content : "Lormont (33249)
Population : 20271"} - }, - "town-03190" : { - value: "20229", - latitude: 46.564722222222, - longitude: 3.3325, - href : "#", - tooltip: {content : "Moulins (03190)
Population : 20229"} - }, - "town-45232" : { - value: "20196", - latitude: 47.863055555556, - longitude: 1.8997222222222, - href : "#", - tooltip: {content : "Olivet (45232)
Population : 20196"} - }, - "town-94044" : { - value: "20112", - latitude: 48.746388888889, - longitude: 2.4883333333333, - href : "#", - tooltip: {content : "Limeil-Brévannes (94044)
Population : 20112"} - }, - "town-33162" : { - value: "19998", - latitude: 44.884444444444, - longitude: -0.65138888888889, - href : "#", - tooltip: {content : "Eysines (33162)
Population : 19998"} - }, - "town-92071" : { - value: "19986", - latitude: 48.778611111111, - longitude: 2.2905555555556, - href : "#", - tooltip: {content : "Sceaux (92071)
Population : 19986"} - }, - "town-94003" : { - value: "19964", - latitude: 48.806666666667, - longitude: 2.3352777777778, - href : "#", - tooltip: {content : "Arcueil (94003)
Population : 19964"} - }, - "town-50502" : { - value: "19944", - latitude: 49.114444444444, - longitude: -1.0916666666667, - href : "#", - tooltip: {content : "Saint-Lô (50502)
Population : 19944"} - }, - "town-69244" : { - value: "19938", - latitude: 45.763333333333, - longitude: 4.78, - href : "#", - tooltip: {content : "Tassin-la-Demi-Lune (69244)
Population : 19938"} - }, - "town-76451" : { - value: "19880", - latitude: 49.4625, - longitude: 1.0872222222222, - href : "#", - tooltip: {content : "Mont-Saint-Aignan (76451)
Population : 19880"} - }, - "town-33199" : { - value: "19877", - latitude: 44.635277777778, - longitude: -1.0677777777778, - href : "#", - tooltip: {content : "Gujan-Mestras (33199)
Population : 19877"} - }, - "town-71306" : { - value: "19855", - latitude: 46.666944444444, - longitude: 4.3688888888889, - href : "#", - tooltip: {content : "Montceau-les-Mines (71306)
Population : 19855"} - }, - "town-13002" : { - value: "19775", - latitude: 43.336111111111, - longitude: 5.4822222222222, - href : "#", - tooltip: {content : "Allauch (13002)
Population : 19775"} - }, - "town-78005" : { - value: "19754", - latitude: 48.962222222222, - longitude: 2.0686111111111, - href : "#", - tooltip: {content : "Achères (78005)
Population : 19754"} - }, - "town-55545" : { - value: "19714", - latitude: 49.159722222222, - longitude: 5.3827777777778, - href : "#", - tooltip: {content : "Verdun (55545)
Population : 19714"} - }, - "town-73011" : { - value: "19713", - latitude: 45.675833333333, - longitude: 6.3925, - href : "#", - tooltip: {content : "Albertville (73011)
Population : 19713"} - }, - "town-63124" : { - value: "19709", - latitude: 45.741111111111, - longitude: 3.1963888888889, - href : "#", - tooltip: {content : "Cournon-d'Auvergne (63124)
Population : 19709"} - }, - "town-13071" : { - value: "19706", - latitude: 43.41, - longitude: 5.3094444444444, - href : "#", - tooltip: {content : "Les Pennes-Mirabeau (13071)
Population : 19706"} - }, - "town-97309" : { - value: "19691", - latitude: 4.905, - longitude: -52.276388888889, - href : "#", - tooltip: {content : "Remire-Montjoly (97309)
Population : 19691"} - }, - "town-29039" : { - value: "19688", - latitude: 47.875277777778, - longitude: -3.9188888888889, - href : "#", - tooltip: {content : "Concarneau (29039)
Population : 19688"} - }, - "town-79049" : { - value: "19676", - latitude: 46.84, - longitude: -0.48861111111111, - href : "#", - tooltip: {content : "Bressuire (79049)
Population : 19676"} - }, - "town-43157" : { - value: "19665", - latitude: 45.043333333333, - longitude: 3.885, - href : "#", - tooltip: {content : "Le Puy-en-Velay (43157)
Population : 19665"} - }, - "town-45284" : { - value: "19623", - latitude: 47.911944444444, - longitude: 1.9711111111111, - href : "#", - tooltip: {content : "Saint-Jean-de-Braye (45284)
Population : 19623"} - }, - "town-76259" : { - value: "19581", - latitude: 49.7575, - longitude: 0.37916666666667, - href : "#", - tooltip: {content : "Fécamp (76259)
Population : 19581"} - }, - "town-67462" : { - value: "19576", - latitude: 48.259444444444, - longitude: 7.4541666666667, - href : "#", - tooltip: {content : "Sélestat (67462)
Population : 19576"} - }, - "town-97210" : { - value: "19547", - latitude: 14.615277777778, - longitude: -60.9025, - href : "#", - tooltip: {content : "Le François (97210)
Population : 19547"} - }, - "town-97107" : { - value: "19544", - latitude: 16.0425, - longitude: -61.564722222222, - href : "#", - tooltip: {content : "Capesterre-Belle-Eau (97107)
Population : 19544"} - }, - "town-84054" : { - value: "19525", - latitude: 43.919444444444, - longitude: 5.0513888888889, - href : "#", - tooltip: {content : "L'Isle-sur-la-Sorgue (84054)
Population : 19525"} - }, - "town-74268" : { - value: "19499", - latitude: 45.888888888889, - longitude: 6.0961111111111, - href : "#", - tooltip: {content : "Seynod (74268)
Population : 19499"} - }, - "town-06157" : { - value: "19489", - latitude: 43.722777777778, - longitude: 7.1136111111111, - href : "#", - tooltip: {content : "Vence (06157)
Population : 19489"} - }, - "town-78362" : { - value: "19418", - latitude: 48.974166666667, - longitude: 1.7108333333333, - href : "#", - tooltip: {content : "Mantes-la-Ville (78362)
Population : 19418"} - }, - "town-85047" : { - value: "19341", - latitude: 46.845833333333, - longitude: -1.8791666666667, - href : "#", - tooltip: {content : "Challans (85047)
Population : 19341"} - }, - "town-16102" : { - value: "19335", - latitude: 45.695833333333, - longitude: -0.32916666666667, - href : "#", - tooltip: {content : "Cognac (16102)
Population : 19335"} - }, - "town-94059" : { - value: "19304", - latitude: 48.811111111111, - longitude: 2.5716666666667, - href : "#", - tooltip: {content : "Le Plessis-Trévise (94059)
Population : 19304"} - }, - "town-95424" : { - value: "19296", - latitude: 48.993888888889, - longitude: 2.195, - href : "#", - tooltip: {content : "Montigny-lès-Cormeilles (95424)
Population : 19296"} - }, - "town-06085" : { - value: "19267", - latitude: 43.6, - longitude: 6.9947222222222, - href : "#", - tooltip: {content : "Mougins (06085)
Population : 19267"} - }, - "town-84089" : { - value: "19265", - latitude: 43.694166666667, - longitude: 5.5030555555556, - href : "#", - tooltip: {content : "Pertuis (84089)
Population : 19265"} - }, - "town-69091" : { - value: "19258", - latitude: 45.590555555556, - longitude: 4.7688888888889, - href : "#", - tooltip: {content : "Givors (69091)
Population : 19258"} - }, - "town-25462" : { - value: "19227", - latitude: 46.906111111111, - longitude: 6.3547222222222, - href : "#", - tooltip: {content : "Pontarlier (25462)
Population : 19227"} - }, - "town-60463" : { - value: "19155", - latitude: 49.274722222222, - longitude: 2.4675, - href : "#", - tooltip: {content : "Nogent-sur-Oise (60463)
Population : 19155"} - }, - "town-26058" : { - value: "19133", - latitude: 44.9475, - longitude: 4.8952777777778, - href : "#", - tooltip: {content : "Bourg-lès-Valence (26058)
Population : 19133"} - }, - "town-47157" : { - value: "19113", - latitude: 44.5, - longitude: 0.16527777777778, - href : "#", - tooltip: {content : "Marmande (47157)
Population : 19113"} - }, - "town-08409" : { - value: "19099", - latitude: 49.701944444444, - longitude: 4.9402777777778, - href : "#", - tooltip: {content : "Sedan (08409)
Population : 19099"} - }, - "town-78383" : { - value: "19014", - latitude: 48.762777777778, - longitude: 1.9455555555556, - href : "#", - tooltip: {content : "Maurepas (78383)
Population : 19014"} - }, - "town-92022" : { - value: "18887", - latitude: 48.808611111111, - longitude: 2.1886111111111, - href : "#", - tooltip: {content : "Chaville (92022)
Population : 18887"} - }, - "town-44047" : { - value: "18861", - latitude: 47.214722222222, - longitude: -1.7238888888889, - href : "#", - tooltip: {content : "Couëron (44047)
Population : 18861"} - }, - "town-44020" : { - value: "18762", - latitude: 47.179166666667, - longitude: -1.6247222222222, - href : "#", - tooltip: {content : "Bouguenais (44020)
Population : 18762"} - }, - "town-30028" : { - value: "18705", - latitude: 44.1625, - longitude: 4.62, - href : "#", - tooltip: {content : "Bagnols-sur-Cèze (30028)
Population : 18705"} - }, - "town-38553" : { - value: "18703", - latitude: 45.613333333333, - longitude: 5.1486111111111, - href : "#", - tooltip: {content : "Villefontaine (38553)
Population : 18703"} - }, - "town-63300" : { - value: "18684", - latitude: 45.893611111111, - longitude: 3.1125, - href : "#", - tooltip: {content : "Riom (63300)
Population : 18684"} - }, - "town-17306" : { - value: "18674", - latitude: 45.627777777778, - longitude: -1.0255555555556, - href : "#", - tooltip: {content : "Royan (17306)
Population : 18674"} - }, - "town-77294" : { - value: "18671", - latitude: 48.983888888889, - longitude: 2.6163888888889, - href : "#", - tooltip: {content : "Mitry-Mory (77294)
Population : 18671"} - }, - "town-91161" : { - value: "18664", - latitude: 48.705277777778, - longitude: 2.3161111111111, - href : "#", - tooltip: {content : "Chilly-Mazarin (91161)
Population : 18664"} - }, - "town-94021" : { - value: "18659", - latitude: 48.766388888889, - longitude: 2.3533333333333, - href : "#", - tooltip: {content : "Chevilly-Larue (94021)
Population : 18659"} - }, - "town-97228" : { - value: "18622", - latitude: 14.781388888889, - longitude: -60.993611111111, - href : "#", - tooltip: {content : "Sainte-Marie (97228)
Population : 18622"} - }, - "town-56162" : { - value: "18591", - latitude: 47.735833333333, - longitude: -3.4311111111111, - href : "#", - tooltip: {content : "Ploemeur (56162)
Population : 18591"} - }, - "town-94077" : { - value: "18568", - latitude: 48.734444444444, - longitude: 2.4108333333333, - href : "#", - tooltip: {content : "Villeneuve-le-Roi (94077)
Population : 18568"} - }, - "town-39300" : { - value: "18560", - latitude: 46.674444444444, - longitude: 5.5538888888889, - href : "#", - tooltip: {content : "Lons-le-Saunier (39300)
Population : 18560"} - }, - "town-92033" : { - value: "18469", - latitude: 48.845555555556, - longitude: 2.1869444444444, - href : "#", - tooltip: {content : "Garches (92033)
Population : 18469"} - }, - "town-69081" : { - value: "18413", - latitude: 45.774444444444, - longitude: 4.7775, - href : "#", - tooltip: {content : "Écully (69081)
Population : 18413"} - }, - "town-27375" : { - value: "18332", - latitude: 49.215277777778, - longitude: 1.1655555555556, - href : "#", - tooltip: {content : "Louviers (27375)
Population : 18332"} - }, - "town-44026" : { - value: "18275", - latitude: 47.296944444444, - longitude: -1.4927777777778, - href : "#", - tooltip: {content : "Carquefou (44026)
Population : 18275"} - }, - "town-59507" : { - value: "18235", - latitude: 50.604722222222, - longitude: 3.0877777777778, - href : "#", - tooltip: {content : "Ronchin (59507)
Population : 18235"} - }, - "town-94019" : { - value: "18227", - latitude: 48.798333333333, - longitude: 2.5338888888889, - href : "#", - tooltip: {content : "Chennevières-sur-Marne (94019)
Population : 18227"} - }, - "town-84129" : { - value: "18220", - latitude: 44.008333333333, - longitude: 4.8725, - href : "#", - tooltip: {content : "Sorgues (84129)
Population : 18220"} - }, - "town-93061" : { - value: "18171", - latitude: 48.885, - longitude: 2.4038888888889, - href : "#", - tooltip: {content : "Le Pré-Saint-Gervais (93061)
Population : 18171"} - }, - "town-38229" : { - value: "18065", - latitude: 45.208611111111, - longitude: 5.7794444444444, - href : "#", - tooltip: {content : "Meylan (38229)
Population : 18065"} - }, - "town-67043" : { - value: "18038", - latitude: 48.613888888889, - longitude: 7.7519444444444, - href : "#", - tooltip: {content : "Bischheim (67043)
Population : 18038"} - }, - "town-94042" : { - value: "17990", - latitude: 48.821388888889, - longitude: 2.4727777777778, - href : "#", - tooltip: {content : "Joinville-le-Pont (94042)
Population : 17990"} - }, - "town-78545" : { - value: "17976", - latitude: 48.800277777778, - longitude: 2.0625, - href : "#", - tooltip: {content : "Saint-Cyr-l'École (78545)
Population : 17976"} - }, - "town-04070" : { - value: "17969", - latitude: 44.0925, - longitude: 6.2355555555556, - href : "#", - tooltip: {content : "Digne-les-Bains (04070)
Population : 17969"} - }, - "town-50173" : { - value: "17942", - latitude: 49.648333333333, - longitude: -1.6547222222222, - href : "#", - tooltip: {content : "Équeurdreville-Hainneville (50173)
Population : 17942"} - }, - "town-74081" : { - value: "17877", - latitude: 46.060277777778, - longitude: 6.5786111111111, - href : "#", - tooltip: {content : "Cluses (74081)
Population : 17877"} - }, - "town-44035" : { - value: "17814", - latitude: 47.298888888889, - longitude: -1.5527777777778, - href : "#", - tooltip: {content : "La Chapelle-sur-Erdre (44035)
Population : 17814"} - }, - "town-78165" : { - value: "17773", - latitude: 48.820555555556, - longitude: 1.9836111111111, - href : "#", - tooltip: {content : "Les Clayes-sous-Bois (78165)
Population : 17773"} - }, - "town-41194" : { - value: "17758", - latitude: 47.358333333333, - longitude: 1.7427777777778, - href : "#", - tooltip: {content : "Romorantin-Lanthenay (41194)
Population : 17758"} - }, - "town-41269" : { - value: "17687", - latitude: 47.792777777778, - longitude: 1.0655555555556, - href : "#", - tooltip: {content : "Vendôme (41269)
Population : 17687"} - }, - "town-63075" : { - value: "17683", - latitude: 45.773611111111, - longitude: 3.0669444444444, - href : "#", - tooltip: {content : "Chamalières (63075)
Population : 17683"} - }, - "town-95598" : { - value: "17670", - latitude: 48.987777777778, - longitude: 2.2997222222222, - href : "#", - tooltip: {content : "Soisy-sous-Montmorency (95598)
Population : 17670"} - }, - "town-74093" : { - value: "17605", - latitude: 45.903611111111, - longitude: 6.1038888888889, - href : "#", - tooltip: {content : "Cran-Gevrier (74093)
Population : 17605"} - }, - "town-59220" : { - value: "17581", - latitude: 50.598888888889, - longitude: 3.0736111111111, - href : "#", - tooltip: {content : "Faches-Thumesnil (59220)
Population : 17581"} - }, - "town-13077" : { - value: "17546", - latitude: 43.405, - longitude: 4.9886111111111, - href : "#", - tooltip: {content : "Port-de-Bouc (13077)
Population : 17546"} - }, - "town-59299" : { - value: "17538", - latitude: 50.655277777778, - longitude: 3.1877777777778, - href : "#", - tooltip: {content : "Hem (59299)
Population : 17538"} - }, - "town-76231" : { - value: "17452", - latitude: 49.285833333333, - longitude: 1.0083333333333, - href : "#", - tooltip: {content : "Elbeuf (76231)
Population : 17452"} - }, - "town-62065" : { - value: "17429", - latitude: 50.409722222222, - longitude: 2.8327777777778, - href : "#", - tooltip: {content : "Avion (62065)
Population : 17429"} - }, - "town-77296" : { - value: "17415", - latitude: 48.626111111111, - longitude: 2.5922222222222, - href : "#", - tooltip: {content : "Moissy-Cramayel (77296)
Population : 17415"} - }, - "town-35360" : { - value: "17393", - latitude: 48.123333333333, - longitude: -1.2094444444444, - href : "#", - tooltip: {content : "Vitré (35360)
Population : 17393"} - }, - "town-42095" : { - value: "17380", - latitude: 45.388055555556, - longitude: 4.2872222222222, - href : "#", - tooltip: {content : "Firminy (42095)
Population : 17380"} - }, - "town-07010" : { - value: "17275", - latitude: 45.24, - longitude: 4.6708333333333, - href : "#", - tooltip: {content : "Annonay (07010)
Population : 17275"} - }, - "town-62215" : { - value: "17275", - latitude: 50.493055555556, - longitude: 2.9580555555556, - href : "#", - tooltip: {content : "Carvin (62215)
Population : 17275"} - }, - "town-83047" : { - value: "17225", - latitude: 43.149722222222, - longitude: 6.0741666666667, - href : "#", - tooltip: {content : "La Crau (83047)
Population : 17225"} - }, - "town-94037" : { - value: "17222", - latitude: 48.813333333333, - longitude: 2.3444444444444, - href : "#", - tooltip: {content : "Gentilly (94037)
Population : 17222"} - }, - "town-97207" : { - value: "17209", - latitude: 14.575833333333, - longitude: -60.975833333333, - href : "#", - tooltip: {content : "Ducos (97207)
Population : 17209"} - }, - "town-95218" : { - value: "17145", - latitude: 49.017222222222, - longitude: 2.0913888888889, - href : "#", - tooltip: {content : "Éragny (95218)
Population : 17145"} - }, - "town-97224" : { - value: "17057", - latitude: 14.670833333333, - longitude: -61.038055555556, - href : "#", - tooltip: {content : "Saint-Joseph (97224)
Population : 17057"} - }, - "town-78372" : { - value: "17019", - latitude: 48.866944444444, - longitude: 2.0941666666667, - href : "#", - tooltip: {content : "Marly-le-Roi (78372)
Population : 17019"} - }, - "town-45285" : { - value: "16951", - latitude: 47.913055555556, - longitude: 1.8733333333333, - href : "#", - tooltip: {content : "Saint-Jean-de-la-Ruelle (45285)
Population : 16951"} - }, - "town-94004" : { - value: "16945", - latitude: 48.750277777778, - longitude: 2.5097222222222, - href : "#", - tooltip: {content : "Boissy-Saint-Léger (94004)
Population : 16945"} - }, - "town-70550" : { - value: "16934", - latitude: 47.622222222222, - longitude: 6.1552777777778, - href : "#", - tooltip: {content : "Vesoul (70550)
Population : 16934"} - }, - "town-84092" : { - value: "16930", - latitude: 43.964166666667, - longitude: 4.86, - href : "#", - tooltip: {content : "Le Pontet (84092)
Population : 16930"} - }, - "town-77305" : { - value: "16926", - latitude: 48.383055555556, - longitude: 2.9480555555556, - href : "#", - tooltip: {content : "Montereau-Fault-Yonne (77305)
Population : 16926"} - }, - "town-97116" : { - value: "16895", - latitude: 16.331944444444, - longitude: -61.456944444444, - href : "#", - tooltip: {content : "Morne-à-l'Eau (97116)
Population : 16895"} - }, - "town-59526" : { - value: "16894", - latitude: 50.448055555556, - longitude: 3.4269444444444, - href : "#", - tooltip: {content : "Saint-Amand-les-Eaux (59526)
Population : 16894"} - }, - "town-94011" : { - value: "16888", - latitude: 48.774166666667, - longitude: 2.4875, - href : "#", - tooltip: {content : "Bonneuil-sur-Marne (94011)
Population : 16888"} - }, - "town-35047" : { - value: "16875", - latitude: 48.024722222222, - longitude: -1.7458333333333, - href : "#", - tooltip: {content : "Bruz (35047)
Population : 16875"} - }, - "town-60612" : { - value: "16867", - latitude: 49.207222222222, - longitude: 2.5866666666667, - href : "#", - tooltip: {content : "Senlis (60612)
Population : 16867"} - }, - "town-76447" : { - value: "16852", - latitude: 49.546111111111, - longitude: 0.18805555555556, - href : "#", - tooltip: {content : "Montivilliers (76447)
Population : 16852"} - }, - "town-55029" : { - value: "16830", - latitude: 48.771666666667, - longitude: 5.1672222222222, - href : "#", - tooltip: {content : "Bar-le-Duc (55029)
Population : 16830"} - }, - "town-78481" : { - value: "16821", - latitude: 48.896666666667, - longitude: 2.1061111111111, - href : "#", - tooltip: {content : "Le Pecq (78481)
Population : 16821"} - }, - "town-33122" : { - value: "16802", - latitude: 44.744444444444, - longitude: -0.68222222222222, - href : "#", - tooltip: {content : "Cestas (33122)
Population : 16802"} - }, - "town-95323" : { - value: "16796", - latitude: 49.010833333333, - longitude: 2.0386111111111, - href : "#", - tooltip: {content : "Jouy-le-Moutier (95323)
Population : 16796"} - }, - "town-69199" : { - value: "16787", - latitude: 45.708611111111, - longitude: 4.8533333333333, - href : "#", - tooltip: {content : "Saint-Fons (69199)
Population : 16787"} - }, - "town-83023" : { - value: "16757", - latitude: 43.405833333333, - longitude: 6.0616666666667, - href : "#", - tooltip: {content : "Brignoles (83023)
Population : 16757"} - }, - "town-78650" : { - value: "16753", - latitude: 48.893888888889, - longitude: 2.1322222222222, - href : "#", - tooltip: {content : "Le Vésinet (78650)
Population : 16753"} - }, - "town-57606" : { - value: "16723", - latitude: 49.104166666667, - longitude: 6.7080555555556, - href : "#", - tooltip: {content : "Saint-Avold (57606)
Population : 16723"} - }, - "town-83123" : { - value: "16643", - latitude: 43.119166666667, - longitude: 5.8022222222222, - href : "#", - tooltip: {content : "Sanary-sur-Mer (83123)
Population : 16643"} - }, - "town-67267" : { - value: "16639", - latitude: 48.5575, - longitude: 7.6830555555556, - href : "#", - tooltip: {content : "Lingolsheim (67267)
Population : 16639"} - }, - "town-44055" : { - value: "16623", - latitude: 47.285833333333, - longitude: -2.3922222222222, - href : "#", - tooltip: {content : "La Baule-Escoublac (44055)
Population : 16623"} - }, - "town-77053" : { - value: "16604", - latitude: 48.6925, - longitude: 2.6111111111111, - href : "#", - tooltip: {content : "Brie-Comte-Robert (77053)
Population : 16604"} - }, - "town-97120" : { - value: "16550", - latitude: 16.241111111111, - longitude: -61.533055555556, - href : "#", - tooltip: {content : "Pointe-à-Pitre (97120)
Population : 16550"} - }, - "town-29151" : { - value: "16547", - latitude: 48.5775, - longitude: -3.8277777777778, - href : "#", - tooltip: {content : "Morlaix (29151)
Population : 16547"} - }, - "town-95476" : { - value: "16537", - latitude: 49.059166666667, - longitude: 2.0625, - href : "#", - tooltip: {content : "Osny (95476)
Population : 16537"} - }, - "town-78335" : { - value: "16534", - latitude: 48.993333333333, - longitude: 1.7358333333333, - href : "#", - tooltip: {content : "Limay (78335)
Population : 16534"} - }, - "town-34154" : { - value: "16504", - latitude: 43.616388888889, - longitude: 4.0075, - href : "#", - tooltip: {content : "Mauguio (34154)
Population : 16504"} - }, - "town-37214" : { - value: "16503", - latitude: 47.402777777778, - longitude: 0.67805555555556, - href : "#", - tooltip: {content : "Saint-Cyr-sur-Loire (37214)
Population : 16503"} - }, - "town-57757" : { - value: "16475", - latitude: 49.358888888889, - longitude: 6.1886111111111, - href : "#", - tooltip: {content : "Yutz (57757)
Population : 16475"} - }, - "town-33167" : { - value: "16457", - latitude: 44.836388888889, - longitude: -0.52583333333333, - href : "#", - tooltip: {content : "Floirac (33167)
Population : 16457"} - }, - "town-09225" : { - value: "16450", - latitude: 43.116388888889, - longitude: 1.6108333333333, - href : "#", - tooltip: {content : "Pamiers (09225)
Population : 16450"} - }, - "town-95637" : { - value: "16443", - latitude: 49.034444444444, - longitude: 2.0319444444444, - href : "#", - tooltip: {content : "Vauréal (95637)
Population : 16443"} - }, - "town-31424" : { - value: "16442", - latitude: 43.565555555556, - longitude: 1.2963888888889, - href : "#", - tooltip: {content : "Plaisance-du-Touch (31424)
Population : 16442"} - }, - "town-50602" : { - value: "16377", - latitude: 49.640833333333, - longitude: -1.5788888888889, - href : "#", - tooltip: {content : "Tourlaville (50602)
Population : 16377"} - }, - "town-59569" : { - value: "16363", - latitude: 50.363055555556, - longitude: 3.1130555555556, - href : "#", - tooltip: {content : "Sin-le-Noble (59569)
Population : 16363"} - }, - "town-38382" : { - value: "16355", - latitude: 45.231666666667, - longitude: 5.6830555555556, - href : "#", - tooltip: {content : "Saint-Égrève (38382)
Population : 16355"} - }, - "town-44069" : { - value: "16263", - latitude: 47.328055555556, - longitude: -2.4291666666667, - href : "#", - tooltip: {content : "Guérande (44069)
Population : 16263"} - }, - "town-28218" : { - value: "16262", - latitude: 48.438333333333, - longitude: 1.465, - href : "#", - tooltip: {content : "Lucé (28218)
Population : 16262"} - }, - "town-72154" : { - value: "16249", - latitude: 47.699722222222, - longitude: -0.076111111111111, - href : "#", - tooltip: {content : "La Flèche (72154)
Population : 16249"} - }, - "town-91471" : { - value: "16231", - latitude: 48.698055555556, - longitude: 2.1875, - href : "#", - tooltip: {content : "Orsay (91471)
Population : 16231"} - }, - "town-78686" : { - value: "16224", - latitude: 48.8, - longitude: 2.1722222222222, - href : "#", - tooltip: {content : "Viroflay (78686)
Population : 16224"} - }, - "town-97115" : { - value: "16191", - latitude: 16.271666666667, - longitude: -61.632777777778, - href : "#", - tooltip: {content : "Lamentin (97115)
Population : 16191"} - }, - "town-74256" : { - value: "16184", - latitude: 45.936388888889, - longitude: 6.6319444444444, - href : "#", - tooltip: {content : "Sallanches (74256)
Population : 16184"} - }, - "town-30032" : { - value: "16183", - latitude: 43.807222222222, - longitude: 4.6433333333333, - href : "#", - tooltip: {content : "Beaucaire (30032)
Population : 16183"} - }, - "town-34129" : { - value: "16166", - latitude: 43.568888888889, - longitude: 3.9086111111111, - href : "#", - tooltip: {content : "Lattes (34129)
Population : 16166"} - }, - "town-54528" : { - value: "16080", - latitude: 48.675, - longitude: 5.8916666666667, - href : "#", - tooltip: {content : "Toul (54528)
Population : 16080"} - }, - "town-31157" : { - value: "16042", - latitude: 43.537777777778, - longitude: 1.3436111111111, - href : "#", - tooltip: {content : "Cugnaux (31157)
Population : 16042"} - }, - "town-38193" : { - value: "15980", - latitude: 45.619444444444, - longitude: 5.2330555555556, - href : "#", - tooltip: {content : "L'Isle-d'Abeau (38193)
Population : 15980"} - }, - "town-35051" : { - value: "15975", - latitude: 48.120833333333, - longitude: -1.6036111111111, - href : "#", - tooltip: {content : "Cesson-Sévigné (35051)
Population : 15975"} - }, - "town-29103" : { - value: "15903", - latitude: 48.450833333333, - longitude: -4.2494444444444, - href : "#", - tooltip: {content : "Landerneau (29103)
Population : 15903"} - }, - "town-42147" : { - value: "15899", - latitude: 45.6075, - longitude: 4.0652777777778, - href : "#", - tooltip: {content : "Montbrison (42147)
Population : 15899"} - }, - "town-19272" : { - value: "15838", - latitude: 45.265833333333, - longitude: 1.7722222222222, - href : "#", - tooltip: {content : "Tulle (19272)
Population : 15838"} - }, - "town-61169" : { - value: "15837", - latitude: 48.748333333333, - longitude: -0.56944444444444, - href : "#", - tooltip: {content : "Flers (61169)
Population : 15837"} - }, - "town-57306" : { - value: "15835", - latitude: 49.329722222222, - longitude: 6.0619444444444, - href : "#", - tooltip: {content : "Hayange (57306)
Population : 15835"} - }, - "town-91645" : { - value: "15830", - latitude: 48.7475, - longitude: 2.2627777777778, - href : "#", - tooltip: {content : "Verrières-le-Buisson (91645)
Population : 15830"} - }, - "town-94015" : { - value: "15825", - latitude: 48.841111111111, - longitude: 2.5222222222222, - href : "#", - tooltip: {content : "Bry-sur-Marne (94015)
Population : 15825"} - }, - "town-64260" : { - value: "15802", - latitude: 43.358611111111, - longitude: -1.7744444444444, - href : "#", - tooltip: {content : "Hendaye (64260)
Population : 15802"} - }, - "town-62108" : { - value: "15783", - latitude: 50.408333333333, - longitude: 1.5927777777778, - href : "#", - tooltip: {content : "Berck (62108)
Population : 15783"} - }, - "town-77337" : { - value: "15782", - latitude: 48.854722222222, - longitude: 2.6288888888889, - href : "#", - tooltip: {content : "Noisiel (77337)
Population : 15782"} - }, - "town-85109" : { - value: "15727", - latitude: 46.871111111111, - longitude: -1.0136111111111, - href : "#", - tooltip: {content : "Les Herbiers (85109)
Population : 15727"} - }, - "town-77186" : { - value: "15665", - latitude: 48.408888888889, - longitude: 2.7016666666667, - href : "#", - tooltip: {content : "Fontainebleau (77186)
Population : 15665"} - }, - "town-13039" : { - value: "15662", - latitude: 43.436388888889, - longitude: 4.9452777777778, - href : "#", - tooltip: {content : "Fos-sur-Mer (13039)
Population : 15662"} - }, - "town-37233" : { - value: "15651", - latitude: 47.390833333333, - longitude: 0.72805555555556, - href : "#", - tooltip: {content : "Saint-Pierre-des-Corps (37233)
Population : 15651"} - }, - "town-71014" : { - value: "15630", - latitude: 46.951111111111, - longitude: 4.2986111111111, - href : "#", - tooltip: {content : "Autun (71014)
Population : 15630"} - }, - "town-78124" : { - value: "15614", - latitude: 48.908055555556, - longitude: 2.1780555555556, - href : "#", - tooltip: {content : "Carrières-sur-Seine (78124)
Population : 15614"} - }, - "town-45208" : { - value: "15583", - latitude: 47.996944444444, - longitude: 2.7325, - href : "#", - tooltip: {content : "Montargis (45208)
Population : 15583"} - }, - "town-78642" : { - value: "15581", - latitude: 48.979722222222, - longitude: 1.9738888888889, - href : "#", - tooltip: {content : "Verneuil-sur-Seine (78642)
Population : 15581"} - }, - "town-56083" : { - value: "15545", - latitude: 47.804166666667, - longitude: -3.2788888888889, - href : "#", - tooltip: {content : "Hennebont (56083)
Population : 15545"} - }, - "town-29046" : { - value: "15540", - latitude: 48.092222222222, - longitude: -4.3302777777778, - href : "#", - tooltip: {content : "Douarnenez (29046)
Population : 15540"} - }, - "town-33056" : { - value: "15508", - latitude: 44.910555555556, - longitude: -0.6375, - href : "#", - tooltip: {content : "Blanquefort (33056)
Population : 15508"} - }, - "town-45302" : { - value: "15423", - latitude: 47.951388888889, - longitude: 1.8802777777778, - href : "#", - tooltip: {content : "Saran (45302)
Population : 15423"} - }, - "town-78418" : { - value: "15412", - latitude: 48.908611111111, - longitude: 2.1494444444444, - href : "#", - tooltip: {content : "Montesson (78418)
Population : 15412"} - }, - "town-78123" : { - value: "15389", - latitude: 48.947777777778, - longitude: 2.0386111111111, - href : "#", - tooltip: {content : "Carrières-sous-Poissy (78123)
Population : 15389"} - }, - "town-34057" : { - value: "15326", - latitude: 43.636111111111, - longitude: 3.9013888888889, - href : "#", - tooltip: {content : "Castelnau-le-Lez (34057)
Population : 15326"} - }, - "town-76157" : { - value: "15281", - latitude: 49.440277777778, - longitude: 1.0252777777778, - href : "#", - tooltip: {content : "Canteleu (76157)
Population : 15281"} - }, - "town-06161" : { - value: "15258", - latitude: 43.658055555556, - longitude: 7.1213888888889, - href : "#", - tooltip: {content : "Villeneuve-Loubet (06161)
Population : 15258"} - }, - "town-45155" : { - value: "15254", - latitude: 47.688888888889, - longitude: 2.6294444444444, - href : "#", - tooltip: {content : "Gien (45155)
Population : 15254"} - }, - "town-62765" : { - value: "15231", - latitude: 50.748333333333, - longitude: 2.2608333333333, - href : "#", - tooltip: {content : "Saint-Omer (62765)
Population : 15231"} - }, - "town-42186" : { - value: "15153", - latitude: 45.529444444444, - longitude: 4.6169444444444, - href : "#", - tooltip: {content : "Rive-de-Gier (42186)
Population : 15153"} - }, - "town-54304" : { - value: "15139", - latitude: 48.685555555556, - longitude: 6.1522222222222, - href : "#", - tooltip: {content : "Laxou (54304)
Population : 15139"} - }, - "town-65286" : { - value: "15102", - latitude: 43.095, - longitude: -0.045277777777778, - href : "#", - tooltip: {content : "Lourdes (65286)
Population : 15102"} - }, - "town-25031" : { - value: "15094", - latitude: 47.482777777778, - longitude: 6.8397222222222, - href : "#", - tooltip: {content : "Audincourt (25031)
Population : 15094"} - }, - "town-33075" : { - value: "15082", - latitude: 44.882777777778, - longitude: -0.6125, - href : "#", - tooltip: {content : "Bruges (33075)
Population : 15082"} - }, - "town-61006" : { - value: "15082", - latitude: 48.744444444444, - longitude: -0.020277777777778, - href : "#", - tooltip: {content : "Argentan (61006)
Population : 15082"} - }, - "town-13027" : { - value: "15079", - latitude: 43.8825, - longitude: 4.855, - href : "#", - tooltip: {content : "Châteaurenard (13027)
Population : 15079"} - }, - "town-95199" : { - value: "15075", - latitude: 49.0275, - longitude: 2.3266666666667, - href : "#", - tooltip: {content : "Domont (95199)
Population : 15075"} - }, - "town-85092" : { - value: "15043", - latitude: 46.466944444444, - longitude: -0.80638888888889, - href : "#", - tooltip: {content : "Fontenay-le-Comte (85092)
Population : 15043"} - }, - "town-02168" : { - value: "15020", - latitude: 49.046388888889, - longitude: 3.4030555555556, - href : "#", - tooltip: {content : "Château-Thierry (02168)
Population : 15020"} - }, - "town-97125" : { - value: "14998", - latitude: 16.251388888889, - longitude: -61.273888888889, - href : "#", - tooltip: {content : "Saint-François (97125)
Population : 14998"} - }, - "town-95563" : { - value: "14962", - latitude: 49.016944444444, - longitude: 2.2463888888889, - href : "#", - tooltip: {content : "Saint-Leu-la-Forêt (95563)
Population : 14962"} - }, - "town-93013" : { - value: "14943", - latitude: 48.934444444444, - longitude: 2.4244444444444, - href : "#", - tooltip: {content : "Le Bourget (93013)
Population : 14943"} - }, - "town-77131" : { - value: "14920", - latitude: 48.815555555556, - longitude: 3.0836111111111, - href : "#", - tooltip: {content : "Coulommiers (77131)
Population : 14920"} - }, - "town-83116" : { - value: "14907", - latitude: 43.453333333333, - longitude: 5.8619444444444, - href : "#", - tooltip: {content : "Saint-Maximin-la-Sainte-Baume (83116)
Population : 14907"} - }, - "town-68154" : { - value: "14903", - latitude: 47.782222222222, - longitude: 7.3480555555556, - href : "#", - tooltip: {content : "Illzach (68154)
Population : 14903"} - }, - "town-85194" : { - value: "14888", - latitude: 46.496388888889, - longitude: -1.7847222222222, - href : "#", - tooltip: {content : "Les Sables-d'Olonne (85194)
Population : 14888"} - }, - "town-56178" : { - value: "14860", - latitude: 48.068611111111, - longitude: -2.9627777777778, - href : "#", - tooltip: {content : "Pontivy (56178)
Population : 14860"} - }, - "town-54431" : { - value: "14832", - latitude: 48.904444444444, - longitude: 6.0541666666667, - href : "#", - tooltip: {content : "Pont-à-Mousson (54431)
Population : 14832"} - }, - "town-59043" : { - value: "14772", - latitude: 50.7375, - longitude: 2.7338888888889, - href : "#", - tooltip: {content : "Bailleul (59043)
Population : 14772"} - }, - "town-91326" : { - value: "14756", - latitude: 48.688333333333, - longitude: 2.3775, - href : "#", - tooltip: {content : "Juvisy-sur-Orge (91326)
Population : 14756"} - }, - "town-54578" : { - value: "14753", - latitude: 48.673055555556, - longitude: 6.1547222222222, - href : "#", - tooltip: {content : "Villers-lès-Nancy (54578)
Population : 14753"} - }, - "town-62643" : { - value: "14717", - latitude: 50.703888888889, - longitude: 1.5938888888889, - href : "#", - tooltip: {content : "Outreau (62643)
Population : 14717"} - }, - "town-54323" : { - value: "14707", - latitude: 49.519722222222, - longitude: 5.7605555555556, - href : "#", - tooltip: {content : "Longwy (54323)
Population : 14707"} - }, - "town-77258" : { - value: "14697", - latitude: 48.836111111111, - longitude: 2.6277777777778, - href : "#", - tooltip: {content : "Lognes (77258)
Population : 14697"} - }, - "town-94069" : { - value: "14647", - latitude: 48.818333333333, - longitude: 2.4347222222222, - href : "#", - tooltip: {content : "Saint-Maurice (94069)
Population : 14647"} - }, - "town-59139" : { - value: "14632", - latitude: 50.125, - longitude: 3.4116666666667, - href : "#", - tooltip: {content : "Caudry (59139)
Population : 14632"} - }, - "town-23096" : { - value: "14577", - latitude: 46.170555555556, - longitude: 1.8683333333333, - href : "#", - tooltip: {content : "Guéret (23096)
Population : 14577"} - }, - "town-59286" : { - value: "14569", - latitude: 50.609166666667, - longitude: 2.9869444444444, - href : "#", - tooltip: {content : "Haubourdin (59286)
Population : 14569"} - }, - "town-95539" : { - value: "14487", - latitude: 48.998611111111, - longitude: 2.3569444444444, - href : "#", - tooltip: {content : "Saint-Brice-sous-Forêt (95539)
Population : 14487"} - }, - "town-63178" : { - value: "14475", - latitude: 45.544166666667, - longitude: 3.2488888888889, - href : "#", - tooltip: {content : "Issoire (63178)
Population : 14475"} - }, - "town-44131" : { - value: "14450", - latitude: 47.115555555556, - longitude: -2.1033333333333, - href : "#", - tooltip: {content : "Pornic (44131)
Population : 14450"} - }, - "town-42279" : { - value: "14425", - latitude: 45.499444444444, - longitude: 4.24, - href : "#", - tooltip: {content : "Saint-Just-Saint-Rambert (42279)
Population : 14425"} - }, - "town-95427" : { - value: "14423", - latitude: 48.973611111111, - longitude: 2.3458333333333, - href : "#", - tooltip: {content : "Montmagny (95427)
Population : 14423"} - }, - "town-68376" : { - value: "14403", - latitude: 47.8075, - longitude: 7.3369444444444, - href : "#", - tooltip: {content : "Wittenheim (68376)
Population : 14403"} - }, - "town-22187" : { - value: "14393", - latitude: 48.534444444444, - longitude: -2.7708333333333, - href : "#", - tooltip: {content : "Plérin (22187)
Population : 14393"} - }, - "town-37208" : { - value: "14375", - latitude: 47.366666666667, - longitude: 0.72666666666667, - href : "#", - tooltip: {content : "Saint-Avertin (37208)
Population : 14375"} - }, - "town-60176" : { - value: "14364", - latitude: 49.234444444444, - longitude: 2.8875, - href : "#", - tooltip: {content : "Crépy-en-Valois (60176)
Population : 14364"} - }, - "town-59291" : { - value: "14358", - latitude: 50.248055555556, - longitude: 3.9244444444444, - href : "#", - tooltip: {content : "Hautmont (59291)
Population : 14358"} - }, - "town-02738" : { - value: "14320", - latitude: 49.655833333333, - longitude: 3.2872222222222, - href : "#", - tooltip: {content : "Tergnier (02738)
Population : 14320"} - }, - "town-01004" : { - value: "14316", - latitude: 45.958055555556, - longitude: 5.3577777777778, - href : "#", - tooltip: {content : "Ambérieu-en-Bugey (01004)
Population : 14316"} - }, - "town-85166" : { - value: "14316", - latitude: 46.536111111111, - longitude: -1.7727777777778, - href : "#", - tooltip: {content : "Olonne-sur-Mer (85166)
Population : 14316"} - }, - "town-77014" : { - value: "14287", - latitude: 48.408888888889, - longitude: 2.725, - href : "#", - tooltip: {content : "Avon (77014)
Population : 14287"} - }, - "town-53147" : { - value: "14264", - latitude: 48.303055555556, - longitude: -0.61361111111111, - href : "#", - tooltip: {content : "Mayenne (53147)
Population : 14264"} - }, - "town-21166" : { - value: "14233", - latitude: 47.291111111111, - longitude: 5.0072222222222, - href : "#", - tooltip: {content : "Chenôve (21166)
Population : 14233"} - }, - "town-93062" : { - value: "14194", - latitude: 48.899166666667, - longitude: 2.5230555555556, - href : "#", - tooltip: {content : "Le Raincy (93062)
Population : 14194"} - }, - "town-84019" : { - value: "14092", - latitude: 44.280277777778, - longitude: 4.7488888888889, - href : "#", - tooltip: {content : "Bollène (84019)
Population : 14092"} - }, - "town-28088" : { - value: "14035", - latitude: 48.070833333333, - longitude: 1.3377777777778, - href : "#", - tooltip: {content : "Châteaudun (28088)
Population : 14035"} - }, - "town-13015" : { - value: "14028", - latitude: 43.454444444444, - longitude: 5.4144444444444, - href : "#", - tooltip: {content : "Bouc-Bel-Air (13015)
Population : 14028"} - }, - "town-91182" : { - value: "13968", - latitude: 48.618055555556, - longitude: 2.4069444444444, - href : "#", - tooltip: {content : "Courcouronnes (91182)
Population : 13968"} - }, - "town-97230" : { - value: "13965", - latitude: 14.738611111111, - longitude: -60.963055555556, - href : "#", - tooltip: {content : "La Trinité (97230)
Population : 13965"} - }, - "town-60471" : { - value: "13907", - latitude: 49.581111111111, - longitude: 2.9988888888889, - href : "#", - tooltip: {content : "Noyon (60471)
Population : 13907"} - }, - "town-74225" : { - value: "13892", - latitude: 45.866111111111, - longitude: 5.9444444444444, - href : "#", - tooltip: {content : "Rumilly (74225)
Population : 13892"} - }, - "town-78073" : { - value: "13880", - latitude: 48.801388888889, - longitude: 2.0316666666667, - href : "#", - tooltip: {content : "Bois-d'Arcy (78073)
Population : 13880"} - }, - "town-03095" : { - value: "13873", - latitude: 46.134444444444, - longitude: 3.4563888888889, - href : "#", - tooltip: {content : "Cusset (03095)
Population : 13873"} - }, - "town-29075" : { - value: "13845", - latitude: 48.433611111111, - longitude: -4.4008333333333, - href : "#", - tooltip: {content : "Guipavas (29075)
Population : 13845"} - }, - "town-31044" : { - value: "13832", - latitude: 43.610277777778, - longitude: 1.4986111111111, - href : "#", - tooltip: {content : "Balma (31044)
Population : 13832"} - }, - "town-51649" : { - value: "13826", - latitude: 48.724722222222, - longitude: 4.5844444444444, - href : "#", - tooltip: {content : "Vitry-le-François (51649)
Population : 13826"} - }, - "town-85060" : { - value: "13802", - latitude: 46.504166666667, - longitude: -1.7372222222222, - href : "#", - tooltip: {content : "Château-d'Olonne (85060)
Population : 13802"} - }, - "town-10323" : { - value: "13774", - latitude: 48.515833333333, - longitude: 3.7266666666667, - href : "#", - tooltip: {content : "Romilly-sur-Seine (10323)
Population : 13774"} - }, - "town-57160" : { - value: "13770", - latitude: 49.205277777778, - longitude: 6.6958333333333, - href : "#", - tooltip: {content : "Creutzwald (57160)
Population : 13770"} - }, - "town-30258" : { - value: "13767", - latitude: 43.677777777778, - longitude: 4.4311111111111, - href : "#", - tooltip: {content : "Saint-Gilles (30258)
Population : 13767"} - }, - "town-59421" : { - value: "13752", - latitude: 50.703333333333, - longitude: 3.1405555555556, - href : "#", - tooltip: {content : "Mouvaux (59421)
Population : 13752"} - }, - "town-50218" : { - value: "13723", - latitude: 48.838055555556, - longitude: -1.5869444444444, - href : "#", - tooltip: {content : "Granville (50218)
Population : 13723"} - }, - "town-91386" : { - value: "13710", - latitude: 48.565277777778, - longitude: 2.4361111111111, - href : "#", - tooltip: {content : "Mennecy (91386)
Population : 13710"} - }, - "town-14047" : { - value: "13702", - latitude: 49.278611111111, - longitude: -0.70388888888889, - href : "#", - tooltip: {content : "Bayeux (14047)
Population : 13702"} - }, - "town-13014" : { - value: "13696", - latitude: 43.475555555556, - longitude: 5.1680555555556, - href : "#", - tooltip: {content : "Berre-l'Étang (13014)
Population : 13696"} - }, - "town-27701" : { - value: "13688", - latitude: 49.274444444444, - longitude: 1.2102777777778, - href : "#", - tooltip: {content : "Val-de-Reuil (27701)
Population : 13688"} - }, - "town-06012" : { - value: "13684", - latitude: 43.741944444444, - longitude: 7.4236111111111, - href : "#", - tooltip: {content : "Beausoleil (06012)
Population : 13684"} - }, - "town-97404" : { - value: "13659", - latitude: -21.266111111111, - longitude: 55.366944444444, - href : "#", - tooltip: {content : "L'Étang-Salé (97404)
Population : 13659"} - }, - "town-95019" : { - value: "13656", - latitude: 48.987222222222, - longitude: 2.4166666666667, - href : "#", - tooltip: {content : "Arnouville (95019)
Population : 13656"} - }, - "town-59014" : { - value: "13639", - latitude: 50.371388888889, - longitude: 3.5044444444444, - href : "#", - tooltip: {content : "Anzin (59014)
Population : 13639"} - }, - "town-29189" : { - value: "13587", - latitude: 48.3725, - longitude: -4.3705555555556, - href : "#", - tooltip: {content : "Plougastel-Daoulas (29189)
Population : 13587"} - }, - "town-81099" : { - value: "13558", - latitude: 43.900555555556, - longitude: 1.8983333333333, - href : "#", - tooltip: {content : "Gaillac (81099)
Population : 13558"} - }, - "town-03321" : { - value: "13545", - latitude: 46.565833333333, - longitude: 3.3544444444444, - href : "#", - tooltip: {content : "Yzeure (03321)
Population : 13545"} - }, - "town-66037" : { - value: "13528", - latitude: 42.705555555556, - longitude: 3.0072222222222, - href : "#", - tooltip: {content : "Canet-en-Roussillon (66037)
Population : 13528"} - }, - "town-33003" : { - value: "13511", - latitude: 44.924722222222, - longitude: -0.48666666666667, - href : "#", - tooltip: {content : "Ambarès-et-Lagrave (33003)
Population : 13511"} - }, - "town-57240" : { - value: "13481", - latitude: 49.141666666667, - longitude: 6.7988888888889, - href : "#", - tooltip: {content : "Freyming-Merlebach (57240)
Population : 13481"} - }, - "town-60395" : { - value: "13473", - latitude: 49.235833333333, - longitude: 2.135, - href : "#", - tooltip: {content : "Méru (60395)
Population : 13473"} - }, - "town-36088" : { - value: "13452", - latitude: 46.948055555556, - longitude: 1.9933333333333, - href : "#", - tooltip: {content : "Issoudun (36088)
Population : 13452"} - }, - "town-64483" : { - value: "13448", - latitude: 43.390277777778, - longitude: -1.6597222222222, - href : "#", - tooltip: {content : "Saint-Jean-de-Luz (64483)
Population : 13448"} - }, - "town-64129" : { - value: "13439", - latitude: 43.3025, - longitude: -0.39722222222222, - href : "#", - tooltip: {content : "Billère (64129)
Population : 13439"} - }, - "town-10081" : { - value: "13436", - latitude: 48.311944444444, - longitude: 4.0444444444444, - href : "#", - tooltip: {content : "La Chapelle-Saint-Luc (10081)
Population : 13436"} - }, - "town-59648" : { - value: "13427", - latitude: 50.585, - longitude: 3.0430555555556, - href : "#", - tooltip: {content : "Wattignies (59648)
Population : 13427"} - }, - "town-13108" : { - value: "13426", - latitude: 43.805, - longitude: 4.6594444444444, - href : "#", - tooltip: {content : "Tarascon (13108)
Population : 13426"} - }, - "town-45068" : { - value: "13398", - latitude: 48.011666666667, - longitude: 2.7358333333333, - href : "#", - tooltip: {content : "Châlette-sur-Loing (45068)
Population : 13398"} - }, - "town-26235" : { - value: "13337", - latitude: 44.3775, - longitude: 4.6961111111111, - href : "#", - tooltip: {content : "Pierrelatte (26235)
Population : 13337"} - }, - "town-97220" : { - value: "13325", - latitude: 14.486666666667, - longitude: -60.903333333333, - href : "#", - tooltip: {content : "Rivière-Pilote (97220)
Population : 13325"} - }, - "town-68278" : { - value: "13251", - latitude: 47.748611111111, - longitude: 7.4044444444444, - href : "#", - tooltip: {content : "Rixheim (68278)
Population : 13251"} - }, - "town-82033" : { - value: "13249", - latitude: 44.04, - longitude: 1.1069444444444, - href : "#", - tooltip: {content : "Castelsarrasin (82033)
Population : 13249"} - }, - "town-37003" : { - value: "13242", - latitude: 47.411388888889, - longitude: 0.9825, - href : "#", - tooltip: {content : "Amboise (37003)
Population : 13242"} - }, - "town-83115" : { - value: "13220", - latitude: 43.308888888889, - longitude: 6.6377777777778, - href : "#", - tooltip: {content : "Sainte-Maxime (83115)
Population : 13220"} - }, - "town-48095" : { - value: "13213", - latitude: 44.518333333333, - longitude: 3.5005555555556, - href : "#", - tooltip: {content : "Mende (48095)
Population : 13213"} - }, - "town-57751" : { - value: "13203", - latitude: 49.151111111111, - longitude: 6.1513888888889, - href : "#", - tooltip: {content : "Woippy (57751)
Population : 13203"} - }, - "town-69089" : { - value: "13159", - latitude: 45.736388888889, - longitude: 4.7636111111111, - href : "#", - tooltip: {content : "Francheville (69089)
Population : 13159"} - }, - "town-83107" : { - value: "13125", - latitude: 43.443333333333, - longitude: 6.6377777777778, - href : "#", - tooltip: {content : "Roquebrune-sur-Argens (83107)
Population : 13125"} - }, - "town-68166" : { - value: "13068", - latitude: 47.791388888889, - longitude: 7.3380555555556, - href : "#", - tooltip: {content : "Kingersheim (68166)
Population : 13068"} - }, - "town-59367" : { - value: "13067", - latitude: 50.671388888889, - longitude: 3.2144444444444, - href : "#", - tooltip: {content : "Lys-lez-Lannoy (59367)
Population : 13067"} - }, - "town-97221" : { - value: "13040", - latitude: 14.528888888889, - longitude: -60.981388888889, - href : "#", - tooltip: {content : "Rivière-Salée (97221)
Population : 13040"} - }, - "town-83090" : { - value: "13037", - latitude: 43.139444444444, - longitude: 5.8469444444444, - href : "#", - tooltip: {content : "Ollioules (83090)
Population : 13037"} - }, - "town-42044" : { - value: "13023", - latitude: 45.396111111111, - longitude: 4.325, - href : "#", - tooltip: {content : "Le Chambon-Feugerolles (42044)
Population : 13023"} - }, - "town-59508" : { - value: "13016", - latitude: 50.753611111111, - longitude: 3.1202777777778, - href : "#", - tooltip: {content : "Roncq (59508)
Population : 13016"} - }, - "town-72264" : { - value: "12989", - latitude: 47.84, - longitude: -0.33416666666667, - href : "#", - tooltip: {content : "Sablé-sur-Sarthe (72264)
Population : 12989"} - }, - "town-49015" : { - value: "12951", - latitude: 47.506944444444, - longitude: -0.58888888888889, - href : "#", - tooltip: {content : "Avrillé (49015)
Population : 12951"} - }, - "town-59249" : { - value: "12941", - latitude: 50.017222222222, - longitude: 4.0533333333333, - href : "#", - tooltip: {content : "Fourmies (59249)
Population : 12941"} - }, - "town-77333" : { - value: "12907", - latitude: 48.268611111111, - longitude: 2.6936111111111, - href : "#", - tooltip: {content : "Nemours (77333)
Population : 12907"} - }, - "town-40279" : { - value: "12904", - latitude: 43.725555555556, - longitude: -1.0527777777778, - href : "#", - tooltip: {content : "Saint-Paul-lès-Dax (40279)
Population : 12904"} - }, - "town-57630" : { - value: "12886", - latitude: 48.734722222222, - longitude: 7.0538888888889, - href : "#", - tooltip: {content : "Sarrebourg (57630)
Population : 12886"} - }, - "town-12300" : { - value: "12881", - latitude: 44.3525, - longitude: 2.0341666666667, - href : "#", - tooltip: {content : "Villefranche-de-Rouergue (12300)
Population : 12881"} - }, - "town-30351" : { - value: "12872", - latitude: 43.966388888889, - longitude: 4.7958333333333, - href : "#", - tooltip: {content : "Villeneuve-lès-Avignon (30351)
Population : 12872"} - }, - "town-78242" : { - value: "12865", - latitude: 48.813611111111, - longitude: 2.0486111111111, - href : "#", - tooltip: {content : "Fontenay-le-Fleury (78242)
Population : 12865"} - }, - "town-59491" : { - value: "12860", - latitude: 50.389166666667, - longitude: 3.4858333333333, - href : "#", - tooltip: {content : "Raismes (59491)
Population : 12860"} - }, - "town-57206" : { - value: "12829", - latitude: 49.299166666667, - longitude: 6.1097222222222, - href : "#", - tooltip: {content : "Fameck (57206)
Population : 12829"} - }, - "town-06152" : { - value: "12803", - latitude: 43.641388888889, - longitude: 7.0088888888889, - href : "#", - tooltip: {content : "Valbonne (06152)
Population : 12803"} - }, - "town-67046" : { - value: "12800", - latitude: 48.766388888889, - longitude: 7.8569444444444, - href : "#", - tooltip: {content : "Bischwiller (67046)
Population : 12800"} - }, - "town-06104" : { - value: "12700", - latitude: 43.757222222222, - longitude: 7.4741666666667, - href : "#", - tooltip: {content : "Roquebrune-Cap-Martin (06104)
Population : 12700"} - }, - "town-56007" : { - value: "12695", - latitude: 47.667777777778, - longitude: -2.9825, - href : "#", - tooltip: {content : "Auray (56007)
Population : 12695"} - }, - "town-77379" : { - value: "12684", - latitude: 48.558888888889, - longitude: 3.2994444444444, - href : "#", - tooltip: {content : "Provins (77379)
Population : 12684"} - }, - "town-93079" : { - value: "12662", - latitude: 48.964444444444, - longitude: 2.3441666666667, - href : "#", - tooltip: {content : "Villetaneuse (93079)
Population : 12662"} - }, - "town-60414" : { - value: "12661", - latitude: 49.255555555556, - longitude: 2.4383333333333, - href : "#", - tooltip: {content : "Montataire (60414)
Population : 12661"} - }, - "town-68271" : { - value: "12661", - latitude: 47.748333333333, - longitude: 7.3669444444444, - href : "#", - tooltip: {content : "Riedisheim (68271)
Population : 12661"} - }, - "town-14762" : { - value: "12638", - latitude: 48.838611111111, - longitude: -0.88916666666667, - href : "#", - tooltip: {content : "Vire (14762)
Population : 12638"} - }, - "town-44036" : { - value: "12630", - latitude: 47.716944444444, - longitude: -1.3761111111111, - href : "#", - tooltip: {content : "Châteaubriant (44036)
Population : 12630"} - }, - "town-82112" : { - value: "12620", - latitude: 44.104722222222, - longitude: 1.0852777777778, - href : "#", - tooltip: {content : "Moissac (82112)
Population : 12620"} - }, - "town-57660" : { - value: "12609", - latitude: 49.2, - longitude: 6.9291666666667, - href : "#", - tooltip: {content : "Stiring-Wendel (57660)
Population : 12609"} - }, - "town-59574" : { - value: "12602", - latitude: 50.3575, - longitude: 3.2802777777778, - href : "#", - tooltip: {content : "Somain (59574)
Population : 12602"} - }, - "town-77407" : { - value: "12602", - latitude: 48.532777777778, - longitude: 2.5447222222222, - href : "#", - tooltip: {content : "Saint-Fargeau-Ponthierry (77407)
Population : 12602"} - }, - "town-49353" : { - value: "12571", - latitude: 47.446111111111, - longitude: -0.46638888888889, - href : "#", - tooltip: {content : "Trélazé (49353)
Population : 12571"} - }, - "town-64348" : { - value: "12564", - latitude: 43.315, - longitude: -0.41083333333333, - href : "#", - tooltip: {content : "Lons (64348)
Population : 12564"} - }, - "town-22093" : { - value: "12539", - latitude: 48.468611111111, - longitude: -2.5177777777778, - href : "#", - tooltip: {content : "Lamballe (22093)
Population : 12539"} - }, - "town-44154" : { - value: "12521", - latitude: 47.246388888889, - longitude: -2.1669444444444, - href : "#", - tooltip: {content : "Saint-Brevin-les-Pins (44154)
Population : 12521"} - }, - "town-40046" : { - value: "12492", - latitude: 44.393055555556, - longitude: -1.1638888888889, - href : "#", - tooltip: {content : "Biscarrosse (40046)
Population : 12492"} - }, - "town-59152" : { - value: "12469", - latitude: 50.761111111111, - longitude: 3.0077777777778, - href : "#", - tooltip: {content : "Comines (59152)
Population : 12469"} - }, - "town-62186" : { - value: "12469", - latitude: 50.441944444444, - longitude: 2.7244444444444, - href : "#", - tooltip: {content : "Bully-les-Mines (62186)
Population : 12469"} - }, - "town-77479" : { - value: "12459", - latitude: 48.874166666667, - longitude: 2.6380555555556, - href : "#", - tooltip: {content : "Vaires-sur-Marne (77479)
Population : 12459"} - }, - "town-62413" : { - value: "12451", - latitude: 50.445, - longitude: 2.9058333333333, - href : "#", - tooltip: {content : "Harnes (62413)
Population : 12451"} - }, - "town-29233" : { - value: "12443", - latitude: 47.872777777778, - longitude: -3.5497222222222, - href : "#", - tooltip: {content : "Quimperlé (29233)
Population : 12443"} - }, - "town-59560" : { - value: "12429", - latitude: 50.548333333333, - longitude: 3.0294444444444, - href : "#", - tooltip: {content : "Seclin (59560)
Population : 12429"} - }, - "town-02173" : { - value: "12420", - latitude: 49.615555555556, - longitude: 3.2191666666667, - href : "#", - tooltip: {content : "Chauny (02173)
Population : 12420"} - }, - "town-59112" : { - value: "12413", - latitude: 50.398333333333, - longitude: 3.5394444444444, - href : "#", - tooltip: {content : "Bruay-sur-l'Escaut (59112)
Population : 12413"} - }, - "town-76057" : { - value: "12371", - latitude: 49.544444444444, - longitude: 0.95361111111111, - href : "#", - tooltip: {content : "Barentin (76057)
Population : 12371"} - }, - "town-67437" : { - value: "12354", - latitude: 48.741388888889, - longitude: 7.3619444444444, - href : "#", - tooltip: {content : "Saverne (67437)
Population : 12354"} - }, - "town-69277" : { - value: "12340", - latitude: 45.731388888889, - longitude: 5.0022222222222, - href : "#", - tooltip: {content : "Genas (69277)
Population : 12340"} - }, - "town-76758" : { - value: "12328", - latitude: 49.616944444444, - longitude: 0.75305555555556, - href : "#", - tooltip: {content : "Yvetot (76758)
Population : 12328"} - }, - "town-31446" : { - value: "12327", - latitude: 43.546111111111, - longitude: 1.4755555555556, - href : "#", - tooltip: {content : "Ramonville-Saint-Agne (31446)
Population : 12327"} - }, - "town-78015" : { - value: "12327", - latitude: 48.980833333333, - longitude: 2.0583333333333, - href : "#", - tooltip: {content : "Andrésy (78015)
Population : 12327"} - }, - "town-74042" : { - value: "12321", - latitude: 46.078888888889, - longitude: 6.4008333333333, - href : "#", - tooltip: {content : "Bonneville (74042)
Population : 12321"} - }, - "town-62617" : { - value: "12317", - latitude: 50.479722222222, - longitude: 2.6647222222222, - href : "#", - tooltip: {content : "Nœux-les-Mines (62617)
Population : 12317"} - }, - "town-38485" : { - value: "12293", - latitude: 45.181388888889, - longitude: 5.6991666666667, - href : "#", - tooltip: {content : "Seyssinet-Pariset (38485)
Population : 12293"} - }, - "town-91432" : { - value: "12248", - latitude: 48.706388888889, - longitude: 2.3347222222222, - href : "#", - tooltip: {content : "Morangis (91432)
Population : 12248"} - }, - "town-91215" : { - value: "12246", - latitude: 48.693055555556, - longitude: 2.5158333333333, - href : "#", - tooltip: {content : "Épinay-sous-Sénart (91215)
Population : 12246"} - }, - "town-49246" : { - value: "12240", - latitude: 47.424444444444, - longitude: -0.52527777777778, - href : "#", - tooltip: {content : "Les Ponts-de-Cé (49246)
Population : 12240"} - }, - "town-45004" : { - value: "12237", - latitude: 47.973055555556, - longitude: 2.7702777777778, - href : "#", - tooltip: {content : "Amilly (45004)
Population : 12237"} - }, - "town-94074" : { - value: "12228", - latitude: 48.745, - longitude: 2.4672222222222, - href : "#", - tooltip: {content : "Valenton (94074)
Population : 12228"} - }, - "town-11076" : { - value: "12220", - latitude: 43.318055555556, - longitude: 1.9538888888889, - href : "#", - tooltip: {content : "Castelnaudary (11076)
Population : 12220"} - }, - "town-07019" : { - value: "12205", - latitude: 44.619722222222, - longitude: 4.3902777777778, - href : "#", - tooltip: {content : "Aubenas (07019)
Population : 12205"} - }, - "town-81105" : { - value: "12200", - latitude: 43.760833333333, - longitude: 1.9886111111111, - href : "#", - tooltip: {content : "Graulhet (81105)
Population : 12200"} - }, - "town-44172" : { - value: "12187", - latitude: 47.249444444444, - longitude: -1.4866666666667, - href : "#", - tooltip: {content : "Sainte-Luce-sur-Loire (44172)
Population : 12187"} - }, - "town-01033" : { - value: "12161", - latitude: 46.1075, - longitude: 5.8258333333333, - href : "#", - tooltip: {content : "Bellegarde-sur-Valserine (01033)
Population : 12161"} - }, - "town-97105" : { - value: "12145", - latitude: 15.996944444444, - longitude: -61.732777777778, - href : "#", - tooltip: {content : "Basse-Terre (97105)
Population : 12145"} - }, - "town-53062" : { - value: "12143", - latitude: 47.828611111111, - longitude: -0.7027777777777801, - href : "#", - tooltip: {content : "Château-Gontier (53062)
Population : 12143"} - }, - "town-40312" : { - value: "12141", - latitude: 43.540555555556, - longitude: -1.4613888888889, - href : "#", - tooltip: {content : "Tarnos (40312)
Population : 12141"} - }, - "town-74243" : { - value: "12125", - latitude: 46.144166666667, - longitude: 6.0841666666667, - href : "#", - tooltip: {content : "Saint-Julien-en-Genevois (74243)
Population : 12125"} - }, - "town-78688" : { - value: "12122", - latitude: 48.758333333333, - longitude: 2.0508333333333, - href : "#", - tooltip: {content : "Voisins-le-Bretonneux (78688)
Population : 12122"} - }, - "town-05023" : { - value: "12094", - latitude: 44.895833333333, - longitude: 6.635, - href : "#", - tooltip: {content : "Briançon (05023)
Population : 12094"} - }, - "town-31561" : { - value: "12093", - latitude: 43.656388888889, - longitude: 1.4844444444444, - href : "#", - tooltip: {content : "L'Union (31561)
Population : 12093"} - }, - "town-78029" : { - value: "12092", - latitude: 48.958333333333, - longitude: 1.855, - href : "#", - tooltip: {content : "Aubergenville (78029)
Population : 12092"} - }, - "town-84003" : { - value: "12064", - latitude: 43.876111111111, - longitude: 5.3963888888889, - href : "#", - tooltip: {content : "Apt (84003)
Population : 12064"} - }, - "town-62570" : { - value: "12057", - latitude: 50.402222222222, - longitude: 2.8658333333333, - href : "#", - tooltip: {content : "Méricourt (62570)
Population : 12057"} - }, - "town-29212" : { - value: "12012", - latitude: 48.382222222222, - longitude: -4.6202777777778, - href : "#", - tooltip: {content : "Plouzané (29212)
Population : 12012"} - }, - "town-95313" : { - value: "11979", - latitude: 49.111111111111, - longitude: 2.2227777777778, - href : "#", - tooltip: {content : "L'Isle-Adam (95313)
Population : 11979"} - }, - "town-83112" : { - value: "11972", - latitude: 43.183611111111, - longitude: 5.7086111111111, - href : "#", - tooltip: {content : "Saint-Cyr-sur-Mer (83112)
Population : 11972"} - }, - "town-95210" : { - value: "11959", - latitude: 48.969722222222, - longitude: 2.3080555555556, - href : "#", - tooltip: {content : "Enghien-les-Bains (95210)
Population : 11959"} - }, - "town-59383" : { - value: "11958", - latitude: 50.348888888889, - longitude: 3.5441666666667, - href : "#", - tooltip: {content : "Marly (59383)
Population : 11958"} - }, - "town-60509" : { - value: "11948", - latitude: 49.301111111111, - longitude: 2.6036111111111, - href : "#", - tooltip: {content : "Pont-Sainte-Maxence (60509)
Population : 11948"} - }, - "town-76114" : { - value: "11941", - latitude: 49.572222222222, - longitude: 0.4725, - href : "#", - tooltip: {content : "Bolbec (76114)
Population : 11941"} - }, - "town-69283" : { - value: "11931", - latitude: 45.663055555556, - longitude: 4.9530555555556, - href : "#", - tooltip: {content : "Mions (69283)
Population : 11931"} - }, - "town-13081" : { - value: "11928", - latitude: 43.487777777778, - longitude: 5.2322222222222, - href : "#", - tooltip: {content : "Rognac (13081)
Population : 11928"} - }, - "town-74208" : { - value: "11917", - latitude: 45.923611111111, - longitude: 6.6863888888889, - href : "#", - tooltip: {content : "Passy (74208)
Population : 11917"} - }, - "town-74208" : { - value: "11917", - latitude: 45.923611111111, - longitude: 6.6863888888889, - href : "#", - tooltip: {content : "Passy (74208)
Population : 11917"} - }, - "town-28404" : { - value: "11881", - latitude: 48.720833333333, - longitude: 1.3605555555556, - href : "#", - tooltip: {content : "Vernouillet (28404)
Population : 11881"} - }, - "town-13007" : { - value: "11870", - latitude: 43.369444444444, - longitude: 5.6313888888889, - href : "#", - tooltip: {content : "Auriol (13007)
Population : 11870"} - }, - "town-59273" : { - value: "11868", - latitude: 50.986388888889, - longitude: 2.1275, - href : "#", - tooltip: {content : "Gravelines (59273)
Population : 11868"} - }, - "town-27284" : { - value: "11864", - latitude: 49.280555555556, - longitude: 1.7763888888889, - href : "#", - tooltip: {content : "Gisors (27284)
Population : 11864"} - }, - "town-97402" : { - value: "11860", - latitude: -20.995277777778, - longitude: 55.676111111111, - href : "#", - tooltip: {content : "Bras-Panon (97402)
Population : 11860"} - }, - "town-87154" : { - value: "11831", - latitude: 45.887222222222, - longitude: 0.90111111111111, - href : "#", - tooltip: {content : "Saint-Junien (87154)
Population : 11831"} - }, - "town-83098" : { - value: "11830", - latitude: 43.105555555556, - longitude: 6.0233333333333, - href : "#", - tooltip: {content : "Le Pradet (83098)
Population : 11830"} - }, - "town-13026" : { - value: "11796", - latitude: 43.383055555556, - longitude: 5.1641666666667, - href : "#", - tooltip: {content : "Châteauneuf-les-Martigues (13026)
Population : 11796"} - }, - "town-78624" : { - value: "11777", - latitude: 48.980833333333, - longitude: 2.0061111111111, - href : "#", - tooltip: {content : "Triel-sur-Seine (78624)
Population : 11777"} - }, - "town-68112" : { - value: "11757", - latitude: 47.9075, - longitude: 7.2102777777778, - href : "#", - tooltip: {content : "Guebwiller (68112)
Population : 11757"} - }, - "town-31483" : { - value: "11753", - latitude: 43.108055555556, - longitude: 0.7233333333333301, - href : "#", - tooltip: {content : "Saint-Gaudens (31483)
Population : 11753"} - }, - "town-21617" : { - value: "11743", - latitude: 47.336388888889, - longitude: 5.0055555555556, - href : "#", - tooltip: {content : "Talant (21617)
Population : 11743"} - }, - "town-64430" : { - value: "11674", - latitude: 43.488055555556, - longitude: -0.77083333333333, - href : "#", - tooltip: {content : "Orthez (64430)
Population : 11674"} - }, - "town-97405" : { - value: "11671", - latitude: -21.355833333333, - longitude: 55.565833333333, - href : "#", - tooltip: {content : "Petite-Île (97405)
Population : 11671"} - }, - "town-63430" : { - value: "11645", - latitude: 45.856388888889, - longitude: 3.5475, - href : "#", - tooltip: {content : "Thiers (63430)
Population : 11645"} - }, - "town-06033" : { - value: "11639", - latitude: 43.7925, - longitude: 7.1877777777778, - href : "#", - tooltip: {content : "Carros (06033)
Population : 11639"} - }, - "town-12176" : { - value: "11639", - latitude: 44.365555555556, - longitude: 2.5936111111111, - href : "#", - tooltip: {content : "Onet-le-Château (12176)
Population : 11639"} - }, - "town-25580" : { - value: "11633", - latitude: 47.4625, - longitude: 6.8322222222222, - href : "#", - tooltip: {content : "Valentigney (25580)
Population : 11633"} - }, - "town-73179" : { - value: "11620", - latitude: 45.596666666667, - longitude: 5.8775, - href : "#", - tooltip: {content : "La Motte-Servolex (73179)
Population : 11620"} - }, - "town-76484" : { - value: "11613", - latitude: 49.341944444444, - longitude: 1.0913888888889, - href : "#", - tooltip: {content : "Oissel (76484)
Population : 11613"} - }, - "town-57221" : { - value: "11580", - latitude: 49.321388888889, - longitude: 6.1183333333333, - href : "#", - tooltip: {content : "Florange (57221)
Population : 11580"} - }, - "town-62525" : { - value: "11576", - latitude: 50.735555555556, - longitude: 2.2372222222222, - href : "#", - tooltip: {content : "Longuenesse (62525)
Population : 11576"} - }, - "town-10333" : { - value: "11553", - latitude: 48.279722222222, - longitude: 4.0538888888889, - href : "#", - tooltip: {content : "Saint-André-les-Vergers (10333)
Population : 11553"} - }, - "town-22215" : { - value: "11537", - latitude: 48.489444444444, - longitude: -2.7958333333333, - href : "#", - tooltip: {content : "Ploufragan (22215)
Population : 11537"} - }, - "town-68063" : { - value: "11527", - latitude: 47.806666666667, - longitude: 7.1758333333333, - href : "#", - tooltip: {content : "Cernay (68063)
Population : 11527"} - }, - "town-69027" : { - value: "11518", - latitude: 45.673888888889, - longitude: 4.7541666666667, - href : "#", - tooltip: {content : "Brignais (69027)
Population : 11518"} - }, - "town-59527" : { - value: "11505", - latitude: 50.660277777778, - longitude: 3.0438888888889, - href : "#", - tooltip: {content : "Saint-André-lez-Lille (59527)
Population : 11505"} - }, - "town-94060" : { - value: "11494", - latitude: 48.789444444444, - longitude: 2.5766666666667, - href : "#", - tooltip: {content : "La Queue-en-Brie (94060)
Population : 11494"} - }, - "town-76410" : { - value: "11486", - latitude: 49.481944444444, - longitude: 1.0419444444444, - href : "#", - tooltip: {content : "Maromme (76410)
Population : 11486"} - }, - "town-39478" : { - value: "11481", - latitude: 46.387222222222, - longitude: 5.8633333333333, - href : "#", - tooltip: {content : "Saint-Claude (39478)
Population : 11481"} - }, - "town-62758" : { - value: "11469", - latitude: 50.725833333333, - longitude: 1.6322222222222, - href : "#", - tooltip: {content : "Saint-Martin-Boulogne (62758)
Population : 11469"} - }, - "town-64422" : { - value: "11449", - latitude: 43.194166666667, - longitude: -0.60666666666667, - href : "#", - tooltip: {content : "Oloron-Sainte-Marie (64422)
Population : 11449"} - }, - "town-62318" : { - value: "11442", - latitude: 50.517777777778, - longitude: 1.6405555555556, - href : "#", - tooltip: {content : "Étaples (62318)
Population : 11442"} - }, - "town-28280" : { - value: "11436", - latitude: 48.321666666667, - longitude: 0.82166666666667, - href : "#", - tooltip: {content : "Nogent-le-Rotrou (28280)
Population : 11436"} - }, - "town-33005" : { - value: "11415", - latitude: 44.7425, - longitude: -1.0902777777778, - href : "#", - tooltip: {content : "Andernos-les-Bains (33005)
Population : 11415"} - }, - "town-67365" : { - value: "11410", - latitude: 48.541666666667, - longitude: 7.7094444444444, - href : "#", - tooltip: {content : "Ostwald (67365)
Population : 11410"} - }, - "town-13097" : { - value: "11396", - latitude: 43.639722222222, - longitude: 4.8125, - href : "#", - tooltip: {content : "Saint-Martin-de-Crau (13097)
Population : 11396"} - }, - "town-38317" : { - value: "11386", - latitude: 45.123055555556, - longitude: 5.6980555555556, - href : "#", - tooltip: {content : "Le Pont-de-Claix (38317)
Population : 11386"} - }, - "town-74133" : { - value: "11345", - latitude: 46.185, - longitude: 6.2075, - href : "#", - tooltip: {content : "Gaillard (74133)
Population : 11345"} - }, - "town-38474" : { - value: "11317", - latitude: 45.205, - longitude: 5.665, - href : "#", - tooltip: {content : "Sassenage (38474)
Population : 11317"} - }, - "town-2A247" : { - value: "11308", - latitude: 41.590833333333, - longitude: 9.279722222222199, - href : "#", - tooltip: {content : "Porto-Vecchio (2A247)
Population : 11308"} - }, - "town-31187" : { - value: "11301", - latitude: 43.536111111111, - longitude: 1.2311111111111, - href : "#", - tooltip: {content : "Fonsorbes (31187)
Population : 11301"} - }, - "town-83042" : { - value: "11292", - latitude: 43.2525, - longitude: 6.53, - href : "#", - tooltip: {content : "Cogolin (83042)
Population : 11292"} - }, - "town-07102" : { - value: "11291", - latitude: 44.934444444444, - longitude: 4.8747222222222, - href : "#", - tooltip: {content : "Guilherand-Granges (07102)
Population : 11291"} - }, - "town-07324" : { - value: "11287", - latitude: 45.067222222222, - longitude: 4.8327777777778, - href : "#", - tooltip: {content : "Tournon-sur-Rhône (07324)
Population : 11287"} - }, - "town-31113" : { - value: "11285", - latitude: 43.515555555556, - longitude: 1.4980555555556, - href : "#", - tooltip: {content : "Castanet-Tolosan (31113)
Population : 11285"} - }, - "town-67348" : { - value: "11284", - latitude: 48.462222222222, - longitude: 7.4819444444444, - href : "#", - tooltip: {content : "Obernai (67348)
Population : 11284"} - }, - "town-22050" : { - value: "11280", - latitude: 48.455555555556, - longitude: -2.0502777777778, - href : "#", - tooltip: {content : "Dinan (22050)
Population : 11280"} - }, - "town-33009" : { - value: "11278", - latitude: 44.658611111111, - longitude: -1.1688888888889, - href : "#", - tooltip: {content : "Arcachon (33009)
Population : 11278"} - }, - "town-13106" : { - value: "11258", - latitude: 43.398333333333, - longitude: 5.3658333333333, - href : "#", - tooltip: {content : "Septèmes-les-Vallons (13106)
Population : 11258"} - }, - "town-31506" : { - value: "11244", - latitude: 43.551388888889, - longitude: 1.5341666666667, - href : "#", - tooltip: {content : "Saint-Orens-de-Gameville (31506)
Population : 11244"} - }, - "town-63032" : { - value: "11229", - latitude: 45.751666666667, - longitude: 3.0830555555556, - href : "#", - tooltip: {content : "Beaumont (63032)
Population : 11229"} - }, - "town-30341" : { - value: "11220", - latitude: 43.693333333333, - longitude: 4.2761111111111, - href : "#", - tooltip: {content : "Vauvert (30341)
Population : 11220"} - }, - "town-83130" : { - value: "11214", - latitude: 43.19, - longitude: 6.0411111111111, - href : "#", - tooltip: {content : "Solliès-Pont (83130)
Population : 11214"} - }, - "town-18197" : { - value: "11204", - latitude: 46.722777777778, - longitude: 2.505, - href : "#", - tooltip: {content : "Saint-Amand-Montrond (18197)
Population : 11204"} - }, - "town-72003" : { - value: "11202", - latitude: 47.968611111111, - longitude: 0.16055555555556, - href : "#", - tooltip: {content : "Allonnes (72003)
Population : 11202"} - }, - "town-14341" : { - value: "11192", - latitude: 49.138333333333, - longitude: -0.35305555555556, - href : "#", - tooltip: {content : "Ifs (14341)
Population : 11192"} - }, - "town-84080" : { - value: "11191", - latitude: 44.035555555556, - longitude: 4.9972222222222, - href : "#", - tooltip: {content : "Monteux (84080)
Population : 11191"} - }, - "town-77118" : { - value: "11190", - latitude: 48.945, - longitude: 2.6866666666667, - href : "#", - tooltip: {content : "Claye-Souilly (77118)
Population : 11190"} - }, - "town-35093" : { - value: "11169", - latitude: 48.6325, - longitude: -2.0616666666667, - href : "#", - tooltip: {content : "Dinard (35093)
Population : 11169"} - }, - "town-59544" : { - value: "11134", - latitude: 50.369722222222, - longitude: 3.5547222222222, - href : "#", - tooltip: {content : "Saint-Saulve (59544)
Population : 11134"} - }, - "town-60141" : { - value: "11132", - latitude: 49.186944444444, - longitude: 2.4608333333333, - href : "#", - tooltip: {content : "Chantilly (60141)
Population : 11132"} - }, - "town-62048" : { - value: "11116", - latitude: 50.508333333333, - longitude: 2.4736111111111, - href : "#", - tooltip: {content : "Auchel (62048)
Population : 11116"} - }, - "town-77487" : { - value: "11078", - latitude: 48.526388888889, - longitude: 2.6822222222222, - href : "#", - tooltip: {content : "Vaux-le-Pénil (77487)
Population : 11078"} - }, - "town-79202" : { - value: "11066", - latitude: 46.648611111111, - longitude: -0.24694444444444, - href : "#", - tooltip: {content : "Parthenay (79202)
Population : 11066"} - }, - "town-29235" : { - value: "11041", - latitude: 48.408611111111, - longitude: -4.3969444444444, - href : "#", - tooltip: {content : "Le Relecq-Kerhuon (29235)
Population : 11041"} - }, - "town-66172" : { - value: "11033", - latitude: 42.713333333333, - longitude: 2.8419444444444, - href : "#", - tooltip: {content : "Saint-Estève (66172)
Population : 11033"} - }, - "town-58086" : { - value: "11031", - latitude: 47.411388888889, - longitude: 2.9266666666667, - href : "#", - tooltip: {content : "Cosne-Cours-sur-Loire (58086)
Population : 11031"} - }, - "town-42184" : { - value: "11022", - latitude: 46.042777777778, - longitude: 4.0405555555556, - href : "#", - tooltip: {content : "Riorges (42184)
Population : 11022"} - }, - "town-92077" : { - value: "11013", - latitude: 48.826111111111, - longitude: 2.1933333333333, - href : "#", - tooltip: {content : "Ville-d'Avray (92077)
Population : 11013"} - }, - "town-27056" : { - value: "11000", - latitude: 49.088611111111, - longitude: 0.5983333333333301, - href : "#", - tooltip: {content : "Bernay (27056)
Population : 11000"} - }, - "town-37050" : { - value: "10986", - latitude: 47.3375, - longitude: 0.71388888888889, - href : "#", - tooltip: {content : "Chambray-lès-Tours (37050)
Population : 10986"} - }, - "town-13075" : { - value: "10982", - latitude: 43.346944444444, - longitude: 5.4630555555556, - href : "#", - tooltip: {content : "Plan-de-Cuques (13075)
Population : 10982"} - }, - "town-67130" : { - value: "10954", - latitude: 48.421944444444, - longitude: 7.6611111111111, - href : "#", - tooltip: {content : "Erstein (67130)
Population : 10954"} - }, - "town-84141" : { - value: "10905", - latitude: 43.9775, - longitude: 4.9030555555556, - href : "#", - tooltip: {content : "Vedène (84141)
Population : 10905"} - }, - "town-63284" : { - value: "10891", - latitude: 45.798333333333, - longitude: 3.2483333333333, - href : "#", - tooltip: {content : "Pont-du-Château (63284)
Population : 10891"} - }, - "town-91312" : { - value: "10878", - latitude: 48.742222222222, - longitude: 2.2261111111111, - href : "#", - tooltip: {content : "Igny (91312)
Population : 10878"} - }, - "town-37109" : { - value: "10843", - latitude: 47.404166666667, - longitude: 0.59888888888889, - href : "#", - tooltip: {content : "Fondettes (37109)
Population : 10843"} - }, - "town-57433" : { - value: "10842", - latitude: 49.212222222222, - longitude: 6.1611111111111, - href : "#", - tooltip: {content : "Maizières-lès-Metz (57433)
Population : 10842"} - }, - "town-37156" : { - value: "10833", - latitude: 47.388333333333, - longitude: 0.82722222222222, - href : "#", - tooltip: {content : "Montlouis-sur-Loire (37156)
Population : 10833"} - }, - "town-13100" : { - value: "10819", - latitude: 43.789444444444, - longitude: 4.8316666666667, - href : "#", - tooltip: {content : "Saint-Rémy-de-Provence (13100)
Population : 10819"} - }, - "town-74224" : { - value: "10814", - latitude: 46.066944444444, - longitude: 6.3119444444444, - href : "#", - tooltip: {content : "La Roche-sur-Foron (74224)
Population : 10814"} - }, - "town-44132" : { - value: "10796", - latitude: 47.265833333333, - longitude: -2.34, - href : "#", - tooltip: {content : "Pornichet (44132)
Population : 10796"} - }, - "town-60157" : { - value: "10762", - latitude: 49.378888888889, - longitude: 2.4125, - href : "#", - tooltip: {content : "Clermont (60157)
Population : 10762"} - }, - "town-19275" : { - value: "10748", - latitude: 45.548055555556, - longitude: 2.3091666666667, - href : "#", - tooltip: {content : "Ussel (19275)
Population : 10748"} - }, - "town-56206" : { - value: "10746", - latitude: 47.686666666667, - longitude: -2.7344444444444, - href : "#", - tooltip: {content : "Saint-Avé (56206)
Population : 10746"} - }, - "town-11206" : { - value: "10738", - latitude: 43.056944444444, - longitude: 2.2186111111111, - href : "#", - tooltip: {content : "Limoux (11206)
Population : 10738"} - }, - "town-97212" : { - value: "10737", - latitude: 14.708055555556, - longitude: -61.0075, - href : "#", - tooltip: {content : "Gros-Morne (97212)
Population : 10737"} - }, - "town-93030" : { - value: "10735", - latitude: 48.953611111111, - longitude: 2.4163888888889, - href : "#", - tooltip: {content : "Dugny (93030)
Population : 10735"} - }, - "town-97401" : { - value: "10730", - latitude: -21.241944444444, - longitude: 55.333333333333, - href : "#", - tooltip: {content : "Les Avirons (97401)
Population : 10730"} - }, - "town-56078" : { - value: "10718", - latitude: 47.790555555556, - longitude: -3.4886111111111, - href : "#", - tooltip: {content : "Guidel (56078)
Population : 10718"} - }, - "town-91021" : { - value: "10712", - latitude: 48.590277777778, - longitude: 2.2477777777778, - href : "#", - tooltip: {content : "Arpajon (91021)
Population : 10712"} - }, - "town-77251" : { - value: "10711", - latitude: 48.632222222222, - longitude: 2.5486111111111, - href : "#", - tooltip: {content : "Lieusaint (77251)
Population : 10711"} - }, - "town-85226" : { - value: "10697", - latitude: 46.721111111111, - longitude: -1.9455555555556, - href : "#", - tooltip: {content : "Saint-Hilaire-de-Riez (85226)
Population : 10697"} - }, - "town-30202" : { - value: "10696", - latitude: 44.256388888889, - longitude: 4.6483333333333, - href : "#", - tooltip: {content : "Pont-Saint-Esprit (30202)
Population : 10696"} - }, - "town-02810" : { - value: "10691", - latitude: 49.253055555556, - longitude: 3.0902777777778, - href : "#", - tooltip: {content : "Villers-Cotterêts (02810)
Population : 10691"} - }, - "town-11203" : { - value: "10690", - latitude: 43.200555555556, - longitude: 2.7577777777778, - href : "#", - tooltip: {content : "Lézignan-Corbières (11203)
Population : 10690"} - }, - "town-97124" : { - value: "10688", - latitude: 16.027222222222, - longitude: -61.698333333333, - href : "#", - tooltip: {content : "Saint-Claude (97124)
Population : 10688"} - }, - "town-89206" : { - value: "10676", - latitude: 47.982222222222, - longitude: 3.3972222222222, - href : "#", - tooltip: {content : "Joigny (89206)
Population : 10676"} - }, - "town-62250" : { - value: "10673", - latitude: 50.458055555556, - longitude: 2.9472222222222, - href : "#", - tooltip: {content : "Courrières (62250)
Population : 10673"} - }, - "town-34157" : { - value: "10668", - latitude: 43.426666666667, - longitude: 3.6052777777778, - href : "#", - tooltip: {content : "Mèze (34157)
Population : 10668"} - }, - "town-50147" : { - value: "10660", - latitude: 49.045277777778, - longitude: -1.4452777777778, - href : "#", - tooltip: {content : "Coutances (50147)
Population : 10660"} - }, - "town-84088" : { - value: "10654", - latitude: 43.997777777778, - longitude: 5.0591666666667, - href : "#", - tooltip: {content : "Pernes-les-Fontaines (84088)
Population : 10654"} - }, - "town-81140" : { - value: "10649", - latitude: 43.698888888889, - longitude: 1.8188888888889, - href : "#", - tooltip: {content : "Lavaur (81140)
Population : 10649"} - }, - "town-35281" : { - value: "10647", - latitude: 48.090277777778, - longitude: -1.6955555555556, - href : "#", - tooltip: {content : "Saint-Jacques-de-la-Lande (35281)
Population : 10647"} - }, - "town-70285" : { - value: "10635", - latitude: 47.5775, - longitude: 6.7616666666667, - href : "#", - tooltip: {content : "Héricourt (70285)
Population : 10635"} - }, - "town-01173" : { - value: "10634", - latitude: 46.333333333333, - longitude: 6.0577777777778, - href : "#", - tooltip: {content : "Gex (01173)
Population : 10634"} - }, - "town-66171" : { - value: "10630", - latitude: 42.618055555556, - longitude: 3.0063888888889, - href : "#", - tooltip: {content : "Saint-Cyprien (66171)
Population : 10630"} - }, - "town-87114" : { - value: "10627", - latitude: 45.838888888889, - longitude: 1.31, - href : "#", - tooltip: {content : "Panazol (87114)
Population : 10627"} - }, - "town-67204" : { - value: "10620", - latitude: 48.624166666667, - longitude: 7.7547222222222, - href : "#", - tooltip: {content : "Hœnheim (67204)
Population : 10620"} - }, - "town-28229" : { - value: "10600", - latitude: 48.453055555556, - longitude: 1.4619444444444, - href : "#", - tooltip: {content : "Mainvilliers (28229)
Population : 10600"} - }, - "town-95487" : { - value: "10592", - latitude: 49.153333333333, - longitude: 2.2711111111111, - href : "#", - tooltip: {content : "Persan (95487)
Population : 10592"} - }, - "town-59616" : { - value: "10590", - latitude: 50.459444444444, - longitude: 3.5683333333333, - href : "#", - tooltip: {content : "Vieux-Condé (59616)
Population : 10590"} - }, - "town-10362" : { - value: "10587", - latitude: 48.294722222222, - longitude: 4.0488888888889, - href : "#", - tooltip: {content : "Sainte-Savine (10362)
Population : 10587"} - }, - "town-46102" : { - value: "10571", - latitude: 44.608611111111, - longitude: 2.0316666666667, - href : "#", - tooltip: {content : "Figeac (46102)
Population : 10571"} - }, - "town-63164" : { - value: "10524", - latitude: 45.825833333333, - longitude: 3.1447222222222, - href : "#", - tooltip: {content : "Gerzat (63164)
Population : 10524"} - }, - "town-69243" : { - value: "10523", - latitude: 45.896111111111, - longitude: 4.4330555555556, - href : "#", - tooltip: {content : "Tarare (69243)
Population : 10523"} - }, - "town-42189" : { - value: "10522", - latitude: 45.433888888889, - longitude: 4.3236111111111, - href : "#", - tooltip: {content : "Roche-la-Molière (42189)
Population : 10522"} - }, - "town-64335" : { - value: "10517", - latitude: 43.3325, - longitude: -0.43583333333333, - href : "#", - tooltip: {content : "Lescar (64335)
Population : 10517"} - }, - "town-51573" : { - value: "10496", - latitude: 49.25, - longitude: 3.9908333333333, - href : "#", - tooltip: {content : "Tinqueux (51573)
Population : 10496"} - }, - "town-59179" : { - value: "10486", - latitude: 50.301388888889, - longitude: 3.3933333333333, - href : "#", - tooltip: {content : "Douchy-les-Mines (59179)
Population : 10486"} - }, - "town-59008" : { - value: "10469", - latitude: 50.33, - longitude: 3.2511111111111, - href : "#", - tooltip: {content : "Aniche (59008)
Population : 10469"} - }, - "town-13110" : { - value: "10463", - latitude: 43.446944444444, - longitude: 5.6858333333333, - href : "#", - tooltip: {content : "Trets (13110)
Population : 10463"} - }, - "town-06149" : { - value: "10453", - latitude: 43.740833333333, - longitude: 7.3141666666667, - href : "#", - tooltip: {content : "La Trinité (06149)
Population : 10453"} - }, - "town-35024" : { - value: "10447", - latitude: 48.1825, - longitude: -1.6438888888889, - href : "#", - tooltip: {content : "Betton (35024)
Population : 10447"} - }, - "town-68375" : { - value: "10444", - latitude: 47.805277777778, - longitude: 7.2375, - href : "#", - tooltip: {content : "Wittelsheim (68375)
Population : 10444"} - }, - "town-06084" : { - value: "10443", - latitude: 43.62, - longitude: 6.9719444444444, - href : "#", - tooltip: {content : "Mouans-Sartoux (06084)
Population : 10443"} - }, - "town-81163" : { - value: "10437", - latitude: 43.491666666667, - longitude: 2.3733333333333, - href : "#", - tooltip: {content : "Mazamet (81163)
Population : 10437"} - }, - "town-35236" : { - value: "10413", - latitude: 47.651388888889, - longitude: -2.0847222222222, - href : "#", - tooltip: {content : "Redon (35236)
Population : 10413"} - }, - "town-31488" : { - value: "10402", - latitude: 43.665277777778, - longitude: 1.505, - href : "#", - tooltip: {content : "Saint-Jean (31488)
Population : 10402"} - }, - "town-83049" : { - value: "10389", - latitude: 43.2375, - longitude: 6.0708333333333, - href : "#", - tooltip: {content : "Cuers (83049)
Population : 10389"} - }, - "town-26057" : { - value: "10381", - latitude: 45.037777777778, - longitude: 5.05, - href : "#", - tooltip: {content : "Bourg-de-Péage (26057)
Population : 10381"} - }, - "town-78190" : { - value: "10361", - latitude: 48.877777777778, - longitude: 2.1422222222222, - href : "#", - tooltip: {content : "Croissy-sur-Seine (78190)
Population : 10361"} - }, - "town-81060" : { - value: "10361", - latitude: 44.049166666667, - longitude: 2.1580555555556, - href : "#", - tooltip: {content : "Carmaux (81060)
Population : 10361"} - }, - "town-09122" : { - value: "10358", - latitude: 42.965277777778, - longitude: 1.6069444444444, - href : "#", - tooltip: {content : "Foix (09122)
Population : 10358"} - }, - "town-69273" : { - value: "10327", - latitude: 45.668055555556, - longitude: 4.9019444444444, - href : "#", - tooltip: {content : "Corbas (69273)
Population : 10327"} - }, - "town-22136" : { - value: "10324", - latitude: 48.177777777778, - longitude: -2.7533333333333, - href : "#", - tooltip: {content : "Loudéac (22136)
Population : 10324"} - }, - "town-83148" : { - value: "10312", - latitude: 43.427222222222, - longitude: 6.4319444444444, - href : "#", - tooltip: {content : "Vidauban (83148)
Population : 10312"} - }, - "town-76216" : { - value: "10286", - latitude: 49.469722222222, - longitude: 1.0497222222222, - href : "#", - tooltip: {content : "Déville-lès-Rouen (76216)
Population : 10286"} - }, - "town-24520" : { - value: "10279", - latitude: 44.89, - longitude: 1.2166666666667, - href : "#", - tooltip: {content : "Sarlat-la-Canéda (24520)
Population : 10279"} - }, - "town-37195" : { - value: "10279", - latitude: 47.389166666667, - longitude: 0.66055555555556, - href : "#", - tooltip: {content : "La Riche (37195)
Population : 10279"} - }, - "town-86041" : { - value: "10269", - latitude: 46.5975, - longitude: 0.34916666666667, - href : "#", - tooltip: {content : "Buxerolles (86041)
Population : 10269"} - }, - "town-35210" : { - value: "10240", - latitude: 48.147777777778, - longitude: -1.7738888888889, - href : "#", - tooltip: {content : "Pacé (35210)
Population : 10240"} - }, - "town-54159" : { - value: "10239", - latitude: 48.625, - longitude: 6.3497222222222, - href : "#", - tooltip: {content : "Dombasle-sur-Meurthe (54159)
Population : 10239"} - }, - "town-59426" : { - value: "10223", - latitude: 50.746666666667, - longitude: 3.1580555555556, - href : "#", - tooltip: {content : "Neuville-en-Ferrain (59426)
Population : 10223"} - }, - "town-91216" : { - value: "10222", - latitude: 48.673888888889, - longitude: 2.3272222222222, - href : "#", - tooltip: {content : "Épinay-sur-Orge (91216)
Population : 10222"} - }, - "town-16374" : { - value: "10216", - latitude: 45.640277777778, - longitude: 0.19777777777778, - href : "#", - tooltip: {content : "Soyaux (16374)
Population : 10216"} - }, - "town-62516" : { - value: "10189", - latitude: 50.563611111111, - longitude: 2.4819444444444, - href : "#", - tooltip: {content : "Lillers (62516)
Population : 10189"} - }, - "town-21515" : { - value: "10179", - latitude: 47.314444444444, - longitude: 5.1061111111111, - href : "#", - tooltip: {content : "Quetigny (21515)
Population : 10179"} - }, - "town-57019" : { - value: "10167", - latitude: 49.260833333333, - longitude: 6.1419444444444, - href : "#", - tooltip: {content : "Amnéville (57019)
Population : 10167"} - }, - "town-62014" : { - value: "10164", - latitude: 50.638611111111, - longitude: 2.3966666666667, - href : "#", - tooltip: {content : "Aire-sur-la-Lys (62014)
Population : 10164"} - }, - "town-62040" : { - value: "10163", - latitude: 50.735555555556, - longitude: 2.3025, - href : "#", - tooltip: {content : "Arques (62040)
Population : 10163"} - }, - "town-91200" : { - value: "10151", - latitude: 48.528888888889, - longitude: 2.0108333333333, - href : "#", - tooltip: {content : "Dourdan (91200)
Population : 10151"} - }, - "town-66008" : { - value: "10149", - latitude: 42.546111111111, - longitude: 3.0238888888889, - href : "#", - tooltip: {content : "Argelès-sur-Mer (66008)
Population : 10149"} - }, - "town-38565" : { - value: "10146", - latitude: 45.297777777778, - longitude: 5.6369444444444, - href : "#", - tooltip: {content : "Voreppe (38565)
Population : 10146"} - }, - "town-35055" : { - value: "10145", - latitude: 48.088611111111, - longitude: -1.6163888888889, - href : "#", - tooltip: {content : "Chantepie (35055)
Population : 10145"} - }, - "town-21171" : { - value: "10132", - latitude: 47.301666666667, - longitude: 5.1355555555556, - href : "#", - tooltip: {content : "Chevigny-Saint-Sauveur (21171)
Population : 10132"} - }, - "town-97227" : { - value: "10131", - latitude: 14.468333333333, - longitude: -60.921666666667, - href : "#", - tooltip: {content : "Sainte-Luce (97227)
Population : 10131"} - }, - "town-59090" : { - value: "10130", - latitude: 50.701666666667, - longitude: 3.0933333333333, - href : "#", - tooltip: {content : "Bondues (59090)
Population : 10130"} - }, - "town-62587" : { - value: "10113", - latitude: 50.427777777778, - longitude: 2.9297222222222, - href : "#", - tooltip: {content : "Montigny-en-Gohelle (62587)
Population : 10113"} - }, - "town-78674" : { - value: "10106", - latitude: 48.83, - longitude: 2.0022222222222, - href : "#", - tooltip: {content : "Villepreux (78674)
Population : 10106"} - }, - "town-85128" : { - value: "10094", - latitude: 46.454722222222, - longitude: -1.1658333333333, - href : "#", - tooltip: {content : "Luçon (85128)
Population : 10094"} - }, - "town-84138" : { - value: "10077", - latitude: 44.384166666667, - longitude: 4.9902777777778, - href : "#", - tooltip: {content : "Valréas (84138)
Population : 10077"} - }, - "town-54482" : { - value: "10070", - latitude: 48.701111111111, - longitude: 6.2066666666667, - href : "#", - tooltip: {content : "Saint-Max (54482)
Population : 10070"} - }, - "town-62771" : { - value: "10063", - latitude: 50.419722222222, - longitude: 2.8622222222222, - href : "#", - tooltip: {content : "Sallaumines (62771)
Population : 10063"} - }, - "town-69152" : { - value: "10061", - latitude: 45.703611111111, - longitude: 4.8241666666667, - href : "#", - tooltip: {content : "Pierre-Bénite (69152)
Population : 10061"} - }, - "town-79329" : { - value: "10061", - latitude: 46.975, - longitude: -0.21527777777778, - href : "#", - tooltip: {content : "Thouars (79329)
Population : 10061"} - }, - "town-83034" : { - value: "10060", - latitude: 43.095, - longitude: 6.0736111111111, - href : "#", - tooltip: {content : "Carqueiranne (83034)
Population : 10060"} - }, - "town-57591" : { - value: "10045", - latitude: 49.249444444444, - longitude: 6.0947222222222, - href : "#", - tooltip: {content : "Rombas (57591)
Population : 10045"} - }, - "town-83071" : { - value: "10017", - latitude: 43.138055555556, - longitude: 6.2344444444444, - href : "#", - tooltip: {content : "La Londe-les-Maures (83071)
Population : 10017"} - }, - "town-80016" : { - value: "10008", - latitude: 50.001944444444, - longitude: 2.6522222222222, - href : "#", - tooltip: {content : "Albert (80016)
Population : 10008"} - }, - "town-67067" : { - value: "10002", - latitude: 48.731944444444, - longitude: 7.7083333333333, - href : "#", - tooltip: {content : "Brumath (67067)
Population : 10002"} - }, - "town-94055" : { - value: "9990", - latitude: 48.785833333333, - longitude: 2.5383333333333, - href : "#", - tooltip: {content : "Ormesson-sur-Marne (94055)
Population : 9990"} - }, - "town-57447" : { - value: "9984", - latitude: 49.061111111111, - longitude: 6.1497222222222, - href : "#", - tooltip: {content : "Marly (57447)
Population : 9984"} - }, - "town-44129" : { - value: "9961", - latitude: 47.436944444444, - longitude: -2.0877777777778, - href : "#", - tooltip: {content : "Pontchâteau (44129)
Population : 9961"} - }, - "town-59324" : { - value: "9935", - latitude: 50.294444444444, - longitude: 4.1013888888889, - href : "#", - tooltip: {content : "Jeumont (59324)
Population : 9935"} - }, - "town-62637" : { - value: "9934", - latitude: 50.469166666667, - longitude: 2.9936111111111, - href : "#", - tooltip: {content : "Oignies (62637)
Population : 9934"} - }, - "town-76319" : { - value: "9908", - latitude: 49.3575, - longitude: 1.0072222222222, - href : "#", - tooltip: {content : "Grand-Couronne (76319)
Population : 9908"} - }, - "town-76165" : { - value: "9907", - latitude: 49.280833333333, - longitude: 1.0211111111111, - href : "#", - tooltip: {content : "Caudebec-lès-Elbeuf (76165)
Population : 9907"} - }, - "town-42005" : { - value: "9893", - latitude: 45.526111111111, - longitude: 4.2602777777778, - href : "#", - tooltip: {content : "Andrézieux-Bouthéon (42005)
Population : 9893"} - }, - "town-58303" : { - value: "9891", - latitude: 47.012222222222, - longitude: 3.1463888888889, - href : "#", - tooltip: {content : "Varennes-Vauzelles (58303)
Population : 9891"} - }, - "town-59386" : { - value: "9877", - latitude: 50.675833333333, - longitude: 3.0661111111111, - href : "#", - tooltip: {content : "Marquette-lez-Lille (59386)
Population : 9877"} - }, - "town-59636" : { - value: "9864", - latitude: 50.685277777778, - longitude: 3.0486111111111, - href : "#", - tooltip: {content : "Wambrechies (59636)
Population : 9864"} - }, - "town-45075" : { - value: "9840", - latitude: 47.889722222222, - longitude: 1.8397222222222, - href : "#", - tooltip: {content : "La Chapelle-Saint-Mesmin (45075)
Population : 9840"} - }, - "town-59153" : { - value: "9829", - latitude: 50.449166666667, - longitude: 3.5905555555556, - href : "#", - tooltip: {content : "Condé-sur-l'Escaut (59153)
Population : 9829"} - }, - "town-33051" : { - value: "9826", - latitude: 44.644166666667, - longitude: -0.9783333333333299, - href : "#", - tooltip: {content : "Biganos (33051)
Population : 9826"} - }, - "town-91661" : { - value: "9825", - latitude: 48.701388888889, - longitude: 2.245, - href : "#", - tooltip: {content : "Villebon-sur-Yvette (91661)
Population : 9825"} - }, - "town-63014" : { - value: "9824", - latitude: 45.750833333333, - longitude: 3.1108333333333, - href : "#", - tooltip: {content : "Aubière (63014)
Population : 9824"} - }, - "town-60282" : { - value: "9819", - latitude: 49.187777777778, - longitude: 2.4161111111111, - href : "#", - tooltip: {content : "Gouvieux (60282)
Population : 9819"} - }, - "town-69271" : { - value: "9813", - latitude: 45.744444444444, - longitude: 4.9663888888889, - href : "#", - tooltip: {content : "Chassieu (69271)
Population : 9813"} - }, - "town-33366" : { - value: "9809", - latitude: 44.994722222222, - longitude: -0.44583333333333, - href : "#", - tooltip: {content : "Saint-André-de-Cubzac (33366)
Population : 9809"} - }, - "town-31451" : { - value: "9795", - latitude: 43.458611111111, - longitude: 2.0041666666667, - href : "#", - tooltip: {content : "Revel (31451)
Population : 9795"} - }, - "town-59011" : { - value: "9775", - latitude: 50.529444444444, - longitude: 2.9327777777778, - href : "#", - tooltip: {content : "Annœullin (59011)
Population : 9775"} - }, - "town-13069" : { - value: "9771", - latitude: 43.631388888889, - longitude: 5.1505555555556, - href : "#", - tooltip: {content : "Pélissanne (13069)
Population : 9771"} - }, - "town-91122" : { - value: "9769", - latitude: 48.696666666667, - longitude: 2.1613888888889, - href : "#", - tooltip: {content : "Bures-sur-Yvette (91122)
Population : 9769"} - }, - "town-02381" : { - value: "9756", - latitude: 49.921666666667, - longitude: 4.0838888888889, - href : "#", - tooltip: {content : "Hirson (02381)
Population : 9756"} - } - } - }); - - - // Example #6 - $(".maparea6").mapael({ - map : { - name : "world_countries", - defaultArea: { - attrs : { - stroke : "#fff", - "stroke-width" : 1 - } - } - }, - legend : { - area : { - display : true, - title :"Population by country", - slices : [ - { - max :5000000, - attrs : { - fill : "#6aafe1" - }, - label :"Less than de 5000000 inhabitants" - }, - { - min :5000000, - max :10000000, - attrs : { - fill : "#459bd9" - }, - label :"Between 5000000 and 10000000 inhabitants" - }, - { - min :10000000, - max :50000000, - attrs : { - fill : "#2579b5" - }, - label :"Between 10000000 and 50000000 inhabitants" - }, - { - min :50000000, - attrs : { - fill : "#1a527b" - }, - label :"More than 50 million inhabitants" - } - ] - }, - plot :{ - display : true, - title: "Some cities ..." - , slices : [ - { - max :500000, - attrs : { - fill : "#f99200" - }, - attrsHover :{ - transform : "s1.5", - "stroke-width" : 1 - }, - label :"less than 500 000 inhabitants", - size : 10 - }, - { - min :500000, - max :1000000, - attrs : { - fill : "#f99200" - }, - attrsHover :{ - transform : "s1.5", - "stroke-width" : 1 - }, - label :"Between 500 000 and 1 000 000 inhabitants", - size : 20 - }, - { - min :1000000, - attrs : { - fill : "#f99200" - }, - attrsHover :{ - transform : "s1.5", - "stroke-width" : 1 - }, - label :"More than 1 million inhabitants", - size : 30 - } - ] - } - }, - plots : { - 'paris' : { - latitude :48.86, - longitude :2.3444, - value : 500000000, - tooltip: {content : "Paris
Population: 500000000"} - }, - 'newyork' : { - latitude :40.667, - longitude :-73.833, - value : 200001, - tooltip: {content : "New york
Population: 200001"} - }, - 'sydney' : { - latitude :-33.917, - longitude :151.167, - value : 600000, - tooltip: {content : "Sydney
Population: 600000"} - }, - 'brasilia' : { - latitude :-15.781682, - longitude :-47.924195, - value : 200000001, - tooltip: {content : "Brasilia
Population: 200000001"} - }, - 'tokyo': { - latitude :35.687418, - longitude :139.692306, - value : 200001, - tooltip: {content : "Tokyo
Population: 200001"} - } - }, - areas: { - "AF": { - "value": "35320445", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Afghanistan<\/span>
Population : 35320445" - } - }, - "ZA": { - "value": "50586757", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "South Africa<\/span>
Population : 50586757" - } - }, - "AL": { - "value": "3215988", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Albania<\/span>
Population : 3215988" - } - }, - "DZ": { - "value": "35980193", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Algeria<\/span>
Population : 35980193" - } - }, - "DE": { - "value": "81726000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Germany<\/span>
Population : 81726000" - } - }, - "AD": { - "value": "86165", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Andorra<\/span>
Population : 86165" - } - }, - "AO": { - "value": "19618432", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Angola<\/span>
Population : 19618432" - } - }, - "AG": { - "value": "89612", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Antigua And Barbuda<\/span>
Population : 89612" - } - }, - "SA": { - "value": "28082541", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Saudi Arabia<\/span>
Population : 28082541" - } - }, - "AR": { - "value": "40764561", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Argentina<\/span>
Population : 40764561" - } - }, - "AM": { - "value": "3100236", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Armenia<\/span>
Population : 3100236" - } - }, - "AU": { - "value": "22620600", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Australia<\/span>
Population : 22620600" - } - }, - "AT": { - "value": "8419000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Austria<\/span>
Population : 8419000" - } - }, - "AZ": { - "value": "9168000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Azerbaijan<\/span>
Population : 9168000" - } - }, - "BS": { - "value": "347176", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Bahamas<\/span>
Population : 347176" - } - }, - "BH": { - "value": "1323535", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Bahrain<\/span>
Population : 1323535" - } - }, - "BD": { - "value": "150493658", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Bangladesh<\/span>
Population : 150493658" - } - }, - "BB": { - "value": "273925", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Barbados<\/span>
Population : 273925" - } - }, - "BE": { - "value": "11008000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Belgium<\/span>
Population : 11008000" - } - }, - "BZ": { - "value": "356600", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Belize<\/span>
Population : 356600" - } - }, - "BJ": { - "value": "9099922", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Benin<\/span>
Population : 9099922" - } - }, - "BT": { - "value": "738267", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Bhutan<\/span>
Population : 738267" - } - }, - "BY": { - "value": "9473000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Belarus<\/span>
Population : 9473000" - } - }, - "MM": { - "value": "48336763", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Myanmar<\/span>
Population : 48336763" - } - }, - "BO": { - "value": "10088108", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Bolivia, Plurinational State Of<\/span>
Population : 10088108" - } - }, - "BA": { - "value": "3752228", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Bosnia And Herzegovina<\/span>
Population : 3752228" - } - }, - "BW": { - "value": "2030738", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Botswana<\/span>
Population : 2030738" - } - }, - "BR": { - "value": "196655014", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Brazil<\/span>
Population : 196655014" - } - }, - "BN": { - "value": "405938", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Brunei Darussalam<\/span>
Population : 405938" - } - }, - "BG": { - "value": "7476000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Bulgaria<\/span>
Population : 7476000" - } - }, - "BF": { - "value": "16967845", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Burkina Faso<\/span>
Population : 16967845" - } - }, - "BI": { - "value": "8575172", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Burundi<\/span>
Population : 8575172" - } - }, - "KH": { - "value": "14305183", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Cambodia<\/span>
Population : 14305183" - } - }, - "CM": { - "value": "20030362", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Cameroon<\/span>
Population : 20030362" - } - }, - "CA": { - "value": "34482779", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Canada<\/span>
Population : 34482779" - } - }, - "CV": { - "value": "500585", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Cape Verde<\/span>
Population : 500585" - } - }, - "CF": { - "value": "4486837", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Central African Republic<\/span>
Population : 4486837" - } - }, - "CL": { - "value": "17269525", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Chile<\/span>
Population : 17269525" - } - }, - "CN": { - "value": "1344130000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "China<\/span>
Population : 1344130000" - } - }, - "CY": { - "value": "1116564", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Cyprus<\/span>
Population : 1116564" - } - }, - "CO": { - "value": "46927125", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Colombia<\/span>
Population : 46927125" - } - }, - "KM": { - "value": "753943", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Comoros<\/span>
Population : 753943" - } - }, - "CG": { - "value": "4139748", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Congo<\/span>
Population : 4139748" - } - }, - "CD": { - "value": "67757577", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Congo, The Democratic Republic Of The<\/span>
Population : 67757577" - } - }, - "KP": { - "value": "24451285", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Korea, Democratic People's Republic Of<\/span>
Population : 24451285" - } - }, - "KR": { - "value": "49779000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Korea, Republic Of<\/span>
Population : 49779000" - } - }, - "CR": { - "value": "4726575", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Costa Rica<\/span>
Population : 4726575" - } - }, - "CI": { - "value": "20152894", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "C\u00d4te D'ivoire<\/span>
Population : 20152894" - } - }, - "HR": { - "value": "4407000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Croatia<\/span>
Population : 4407000" - } - }, - "CU": { - "value": "11253665", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Cuba<\/span>
Population : 11253665" - } - }, - "DK": { - "value": "5574000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Denmark<\/span>
Population : 5574000" - } - }, - "DJ": { - "value": "905564", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Djibouti<\/span>
Population : 905564" - } - }, - "DM": { - "value": "67675", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Dominica<\/span>
Population : 67675" - } - }, - "EG": { - "value": "82536770", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Egypt<\/span>
Population : 82536770" - } - }, - "AE": { - "value": "7890924", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "United Arab Emirates<\/span>
Population : 7890924" - } - }, - "EC": { - "value": "14666055", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Ecuador<\/span>
Population : 14666055" - } - }, - "ER": { - "value": "5415280", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Eritrea<\/span>
Population : 5415280" - } - }, - "ES": { - "value": "46235000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Spain<\/span>
Population : 46235000" - } - }, - "EE": { - "value": "1340000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Estonia<\/span>
Population : 1340000" - } - }, - "US": { - "value": "311591917", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "United States<\/span>
Population : 311591917" - } - }, - "ET": { - "value": "84734262", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Ethiopia<\/span>
Population : 84734262" - } - }, - "FJ": { - "value": "868406", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Fiji<\/span>
Population : 868406" - } - }, - "FI": { - "value": "5387000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Finland<\/span>
Population : 5387000" - } - }, - "FR": { - "value": "65436552", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "France<\/span>
Population : 65436552" - } - }, - "GA": { - "value": "1534262", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Gabon<\/span>
Population : 1534262" - } - }, - "GM": { - "value": "1776103", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Gambia<\/span>
Population : 1776103" - } - }, - "GE": { - "value": "4486000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Georgia<\/span>
Population : 4486000" - } - }, - "GH": { - "value": "24965816", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Ghana<\/span>
Population : 24965816" - } - }, - "GR": { - "value": "11304000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Greece<\/span>
Population : 11304000" - } - }, - "GD": { - "value": "104890", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Grenada<\/span>
Population : 104890" - } - }, - "GT": { - "value": "14757316", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Guatemala<\/span>
Population : 14757316" - } - }, - "GN": { - "value": "10221808", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Guinea<\/span>
Population : 10221808" - } - }, - "GQ": { - "value": "720213", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Equatorial Guinea<\/span>
Population : 720213" - } - }, - "GW": { - "value": "1547061", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Guinea-bissau<\/span>
Population : 1547061" - } - }, - "GY": { - "value": "756040", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Guyana<\/span>
Population : 756040" - } - }, - "HT": { - "value": "10123787", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Haiti<\/span>
Population : 10123787" - } - }, - "HN": { - "value": "7754687", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Honduras<\/span>
Population : 7754687" - } - }, - "HU": { - "value": "9971000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Hungary<\/span>
Population : 9971000" - } - }, - "JM": { - "value": "2709300", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Jamaica<\/span>
Population : 2709300" - } - }, - "JP": { - "value": "127817277", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Japan<\/span>
Population : 127817277" - } - }, - "MH": { - "value": "54816", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Marshall Islands<\/span>
Population : 54816" - } - }, - "PW": { - "value": "20609", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Palau<\/span>
Population : 20609" - } - }, - "SB": { - "value": "552267", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Solomon Islands<\/span>
Population : 552267" - } - }, - "IN": { - "value": "1241491960", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "India<\/span>
Population : 1241491960" - } - }, - "ID": { - "value": "242325638", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Indonesia<\/span>
Population : 242325638" - } - }, - "JO": { - "value": "6181000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Jordan<\/span>
Population : 6181000" - } - }, - "IR": { - "value": "74798599", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Iran, Islamic Republic Of<\/span>
Population : 74798599" - } - }, - "IQ": { - "value": "32961959", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Iraq<\/span>
Population : 32961959" - } - }, - "IE": { - "value": "4487000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Ireland<\/span>
Population : 4487000" - } - }, - "IS": { - "value": "319000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Iceland<\/span>
Population : 319000" - } - }, - "IL": { - "value": "7765700", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Israel<\/span>
Population : 7765700" - } - }, - "IT": { - "value": "60770000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Italy<\/span>
Population : 60770000" - } - }, - "KZ": { - "value": "16558459", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Kazakhstan<\/span>
Population : 16558459" - } - }, - "KE": { - "value": "41609728", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Kenya<\/span>
Population : 41609728" - } - }, - "KG": { - "value": "5507000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Kyrgyzstan<\/span>
Population : 5507000" - } - }, - "KI": { - "value": "101093", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Kiribati<\/span>
Population : 101093" - } - }, - "KW": { - "value": "2818042", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Kuwait<\/span>
Population : 2818042" - } - }, - "LA": { - "value": "6288037", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Lao People's Democratic Republic<\/span>
Population : 6288037" - } - }, - "LS": { - "value": "2193843", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Lesotho<\/span>
Population : 2193843" - } - }, - "LV": { - "value": "2220000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Latvia<\/span>
Population : 2220000" - } - }, - "LB": { - "value": "4259405", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Lebanon<\/span>
Population : 4259405" - } - }, - "LR": { - "value": "4128572", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Liberia<\/span>
Population : 4128572" - } - }, - "LY": { - "value": "6422772", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Libya<\/span>
Population : 6422772" - } - }, - "LI": { - "value": "36304", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Liechtenstein<\/span>
Population : 36304" - } - }, - "LT": { - "value": "3203000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Lithuania<\/span>
Population : 3203000" - } - }, - "LU": { - "value": "517000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Luxembourg<\/span>
Population : 517000" - } - }, - "MK": { - "value": "2063893", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Macedonia, The Former Yugoslav Republic Of<\/span>
Population : 2063893" - } - }, - "MG": { - "value": "21315135", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Madagascar<\/span>
Population : 21315135" - } - }, - "MY": { - "value": "28859154", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Malaysia<\/span>
Population : 28859154" - } - }, - "MW": { - "value": "15380888", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Malawi<\/span>
Population : 15380888" - } - }, - "MV": { - "value": "320081", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Maldives<\/span>
Population : 320081" - } - }, - "ML": { - "value": "15839538", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Mali<\/span>
Population : 15839538" - } - }, - "MT": { - "value": "419000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Malta<\/span>
Population : 419000" - } - }, - "MA": { - "value": "32272974", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Morocco<\/span>
Population : 32272974" - } - }, - "MU": { - "value": "1286051", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Mauritius<\/span>
Population : 1286051" - } - }, - "MR": { - "value": "3541540", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Mauritania<\/span>
Population : 3541540" - } - }, - "MX": { - "value": "114793341", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Mexico<\/span>
Population : 114793341" - } - }, - "FM": { - "value": "111542", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Micronesia, Federated States Of<\/span>
Population : 111542" - } - }, - "MD": { - "value": "3559000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Moldova, Republic Of<\/span>
Population : 3559000" - } - }, - "MC": { - "value": "35427", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Monaco<\/span>
Population : 35427" - } - }, - "MN": { - "value": "2800114", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Mongolia<\/span>
Population : 2800114" - } - }, - "ME": { - "value": "632261", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Montenegro<\/span>
Population : 632261" - } - }, - "MZ": { - "value": "23929708", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Mozambique<\/span>
Population : 23929708" - } - }, - "NA": { - "value": "2324004", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Namibia<\/span>
Population : 2324004" - } - }, - "NP": { - "value": "30485798", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Nepal<\/span>
Population : 30485798" - } - }, - "NI": { - "value": "5869859", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Nicaragua<\/span>
Population : 5869859" - } - }, - "NE": { - "value": "16068994", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Niger<\/span>
Population : 16068994" - } - }, - "NG": { - "value": "162470737", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Nigeria<\/span>
Population : 162470737" - } - }, - "NO": { - "value": "4952000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Norway<\/span>
Population : 4952000" - } - }, - "NZ": { - "value": "4405200", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "New Zealand<\/span>
Population : 4405200" - } - }, - "OM": { - "value": "2846145", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Oman<\/span>
Population : 2846145" - } - }, - "UG": { - "value": "34509205", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Uganda<\/span>
Population : 34509205" - } - }, - "UZ": { - "value": "29341200", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Uzbekistan<\/span>
Population : 29341200" - } - }, - "PK": { - "value": "176745364", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Pakistan<\/span>
Population : 176745364" - } - }, - "PS": { - "value": "4019433", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Palestine, State Of<\/span>
Population : 4019433" - } - }, - "PA": { - "value": "3571185", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Panama<\/span>
Population : 3571185" - } - }, - "PG": { - "value": "7013829", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Papua New Guinea<\/span>
Population : 7013829" - } - }, - "PY": { - "value": "6568290", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Paraguay<\/span>
Population : 6568290" - } - }, - "NL": { - "value": "16696000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Netherlands<\/span>
Population : 16696000" - } - }, - "PE": { - "value": "29399817", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Peru<\/span>
Population : 29399817" - } - }, - "PH": { - "value": "94852030", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Philippines<\/span>
Population : 94852030" - } - }, - "PL": { - "value": "38216000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Poland<\/span>
Population : 38216000" - } - }, - "PT": { - "value": "10637000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Portugal<\/span>
Population : 10637000" - } - }, - "QA": { - "value": "1870041", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Qatar<\/span>
Population : 1870041" - } - }, - "DO": { - "value": "10056181", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Dominican Republic<\/span>
Population : 10056181" - } - }, - "RO": { - "value": "21390000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Romania<\/span>
Population : 21390000" - } - }, - "GB": { - "value": "62641000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "United Kingdom<\/span>
Population : 62641000" - } - }, - "RU": { - "value": "141930000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Russian Federation<\/span>
Population : 141930000" - } - }, - "RW": { - "value": "10942950", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Rwanda<\/span>
Population : 10942950" - } - }, - "KN": { - "value": "53051", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Saint Kitts And Nevis<\/span>
Population : 53051" - } - }, - "SM": { - "value": "31735", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "San Marino<\/span>
Population : 31735" - } - }, - "VC": { - "value": "109365", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Saint Vincent And The Grenadines<\/span>
Population : 109365" - } - }, - "LC": { - "value": "176000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Saint Lucia<\/span>
Population : 176000" - } - }, - "SV": { - "value": "6227491", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "El Salvador<\/span>
Population : 6227491" - } - }, - "WS": { - "value": "183874", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Samoa<\/span>
Population : 183874" - } - }, - "ST": { - "value": "168526", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Sao Tome And Principe<\/span>
Population : 168526" - } - }, - "SN": { - "value": "12767556", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Senegal<\/span>
Population : 12767556" - } - }, - "RS": { - "value": "7261000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Serbia<\/span>
Population : 7261000" - } - }, - "SC": { - "value": "86000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Seychelles<\/span>
Population : 86000" - } - }, - "SL": { - "value": "5997486", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Sierra Leone<\/span>
Population : 5997486" - } - }, - "SG": { - "value": "5183700", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Singapore<\/span>
Population : 5183700" - } - }, - "SK": { - "value": "5440000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Slovakia<\/span>
Population : 5440000" - } - }, - "SI": { - "value": "2052000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Slovenia<\/span>
Population : 2052000" - } - }, - "SO": { - "value": "9556873", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Somalia<\/span>
Population : 9556873" - } - }, - "SD": { - "value": "34318385", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Sudan<\/span>
Population : 34318385" - } - }, - "SS": { - "value": "10314021", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "South Sudan<\/span>
Population : 10314021" - } - }, - "LK": { - "value": "20869000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Sri Lanka<\/span>
Population : 20869000" - } - }, - "SE": { - "value": "9453000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Sweden<\/span>
Population : 9453000" - } - }, - "CH": { - "value": "7907000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Switzerland<\/span>
Population : 7907000" - } - }, - "SR": { - "value": "529419", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Suriname<\/span>
Population : 529419" - } - }, - "SZ": { - "value": "1067773", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Swaziland<\/span>
Population : 1067773" - } - }, - "SY": { - "value": "20820311", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Syrian Arab Republic<\/span>
Population : 20820311" - } - }, - "TJ": { - "value": "6976958", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Tajikistan<\/span>
Population : 6976958" - } - }, - "TZ": { - "value": "46218486", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Tanzania, United Republic Of<\/span>
Population : 46218486" - } - }, - "TD": { - "value": "11525496", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Chad<\/span>
Population : 11525496" - } - }, - "CZ": { - "value": "10546000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Czech Republic<\/span>
Population : 10546000" - } - }, - "TH": { - "value": "69518555", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Thailand<\/span>
Population : 69518555" - } - }, - "TL": { - "value": "1175880", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Timor-leste<\/span>
Population : 1175880" - } - }, - "TG": { - "value": "6154813", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Togo<\/span>
Population : 6154813" - } - }, - "TO": { - "value": "104509", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Tonga<\/span>
Population : 104509" - } - }, - "TT": { - "value": "1346350", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Trinidad And Tobago<\/span>
Population : 1346350" - } - }, - "TN": { - "value": "10673800", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Tunisia<\/span>
Population : 10673800" - } - }, - "TM": { - "value": "5105301", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Turkmenistan<\/span>
Population : 5105301" - } - }, - "TR": { - "value": "73639596", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Turkey<\/span>
Population : 73639596" - } - }, - "TV": { - "value": "9847", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Tuvalu<\/span>
Population : 9847" - } - }, - "VU": { - "value": "245619", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Vanuatu<\/span>
Population : 245619" - } - }, - "VE": { - "value": "29278000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Venezuela, Bolivarian Republic Of<\/span>
Population : 29278000" - } - }, - "VN": { - "value": "87840000", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Viet Nam<\/span>
Population : 87840000" - } - }, - "UA": { - "value": "45706100", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Ukraine<\/span>
Population : 45706100" - } - }, - "UY": { - "value": "3368595", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Uruguay<\/span>
Population : 3368595" - } - }, - "YE": { - "value": "24799880", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Yemen<\/span>
Population : 24799880" - } - }, - "ZM": { - "value": "13474959", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Zambia<\/span>
Population : 13474959" - } - }, - "ZW": { - "value": "12754378", - "attrs": { - "href": "#" - }, - "tooltip": { - "content": "Zimbabwe<\/span>
Population : 12754378" - } - } - } }); - // Example #7 - $(".maparea7").mapael({ - map : { - name : "usa_states" - }, - plots: { - 'ny' : { - latitude: 40.717079, - longitude: -74.00116, - tooltip: {content : "New York"} - }, - 'an' : { - latitude: 61.2108398, - longitude: -149.9019557, - tooltip: {content : "Anchorage"} - }, - 'sf' : { - latitude: 37.792032, - longitude: -122.394613, - tooltip: {content : "San Francisco"} - }, - 'pa' : { - latitude: 19.493204, - longitude: -154.8199569, - tooltip: {content : "Pahoa"} - } - } - }); }); \ No newline at end of file