0

クリックズーム(API !=ズーム)でGoogle Geo Chartsのライブラリを作成しています

svg パスの幅または高さを取得して、それらをフィルタリングし、それらの座標を配列オブジェクトに格納できるようにする必要があります。アラスカとハワイの g 要素の座標を保存できましたが、米国本土では、パスを 1 レベル深くする必要があり、どこが間違っているのかを理解するのに苦労しています。

大陸のnodeListで未定義になっています。

google.visualization.events.addOneTimeListener(chart, 'ready', function (e){
            google.visualization.events.addListener(chart, 'select', function (e){

              var selection = chart.getSelection(),
                  selectedState = '',
                  nodes = document.querySelectorAll("g[clip-path]")[0].childNodes[0],
                  continental = nodes.childNodes[0],
                  alaska = nodes.childNodes[1],
                  hawaii = nodes.childNodes[2],
                  stateCoords = {},
                  nl = null,
                  zoomX = null,
                  zoomY = null;

              //////////////////////////////
              //Get Coordinates of States//
              /////////////////////////////

              getCoords(alaska);
              getCoords(hawaii);
              // getCoords(continental);
              console.log(stateCoords);

              function getCoords(nodeList){

                function getZoom(nodeList, s){
                  nl = nodeList.getBoundingClientRect();
                  zoomY = nl.top + (nl.height/2);
                  zoomX = nl.left + (nl.width/2);
                  stateCoords[s] = [zoomX, zoomY];
                }

                if (nodeList == alaska) {
                    getZoom(nodeList, 1);
                } 
                else if (nodeList == hawaii){
                    getZoom(nodeList, 11);
                } 
                else {
                    console.log('continental');
                    var nodeListLength = nodeList.childNodes.length,
                        i = 0,
                        s = 0;

                    for (i; i < nodeListLength; i++) {
                      console.log(nodeList.childNodes[i]);
                      var pathBound = nodeList.childNodes[i].getBoundingClientRect();

                      if (pathBound.height > 3 && s != 1 && s!= 11) {
                          getZoom(nodeList[i], s);
                          s++;
                      } else { s++; }
                    }

                  }
              }
4

0 に答える 0