i want to make multiple Markers google map by address or pincode like
i just add address or pincode in array and i will made multiple marker google map
for example
var address = new Array('Canada','Newyourk')
or may be pincode
var address = new Array('123456','654321')
my basic is html and javascript
That’s done using Geocoding service of the API. More on this topis here: https://developers.google.com/maps/documentation/javascript/geocoding and here: https://developers.google.com/maps/faq#geocoder_exists.
I also advice you to read the whole API documentation. It’s one the best API documentations out there with lots of useful examples and guides.