Skip to content

Commit

Permalink
Fix #1325. Get only main map svg (#1327)
Browse files Browse the repository at this point in the history
  • Loading branch information
offtherailz authored Dec 6, 2016
1 parent 2c6174f commit 849255d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion web/client/components/map/leaflet/snapshot/GrabMap.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,11 @@ let GrabLMap = React.createClass({
var leftString = window.getComputedStyle(this.mapDiv).getPropertyValue("left");

// get all the informations needed to snap svg before
let svgs = this.mapDiv.getElementsByTagName("svg");
let mapPanes = this.mapDiv.getElementsByClassName("leaflet-map-pane");
let mapPane = mapPanes && mapPanes[0];
let objectPanes = mapPane && mapPane.getElementsByClassName("leaflet-objects-pane");
let objectDiv = objectPanes && objectPanes[0];
let svgs = objectDiv && objectDiv.getElementsByTagName("svg");
let svg = svgs && svgs[0];
let svgH;
let svgW;
Expand Down

0 comments on commit 849255d

Please sign in to comment.