Given JSON data such as a list of real, unique, valid addresses:
var data = [
{ "address": "48 rue des Grands Moulins, 75013, Paris"},
{ "address": "12_rue_des_Grands_Moulins,_75013,_Paris"},
{ "address": "65_rue_des_Grands_Moulins,_75013,_Paris"},
{ "...": "..."},
];
Each of these few hundred addresses being detailed enough to be unique on Earth.
and given html such as:
<div id="map" style="height:40%;"></div>
How can I create and automatically populate a Google Map with this data ? JSfiddle appreciated.
EDIT: Current advancement of my fiddle here. I will migrate data into JSON and add a loop to iterate each object tomorrow.
Note: using the street-adress we can get the geoloc info in JSON format using: this query