anychart.onDocumentReady(function () {
{id: "US", name: "USA", value: "A1"}
{"id": "US.TX", "value": 23}
txMap.geoData(anychart.maps["texas"]);
map.geoData(anychart.maps.united_states_of_america);
usaSeries = map.choropleth(usaDataSet);
var chart = anychart.map();
chart.geoData(anychart.maps.world);
worldSeries = chart.choropleth(worldDataSet);
chart.container("container");
worldSeries.listen("pointClick", function(e) {
chart.drillTo(e.point.get("id"), map);
usaSeries.listen("pointClick", function(e) {
chart.drillTo(e.point.get("id"), txMap);