javascript - India states map in Google geomaps -


i create interactive geo map. have created world map

region: 'world', displaymode: 'regions' 

and created map india markers

region: 'in', domain: 'in', displaymode: 'markers', 

now need create map india regions instead of markers.
here problem markers:-

i have created there states missing in uttarakhand, chhatisgarh , telangana. can that, here link jsfiddle showing map indian states fiddle map

the map works, names can wrong. recommend use iso codes avoid problems: https://en.wikipedia.org/wiki/iso_3166-2:in

you can create data in way:

  var data = google.visualization.arraytodatatable([     ['state code', 'state', 'population'],     ['in-ut', 'uttarakhand', 10116752],     //rest of states   ]); 

fiddle

tell me if helps you.


Comments

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -