Skip to content

Commit

Permalink
Fix #1325. Get only main map svg
Browse files Browse the repository at this point in the history
  • Loading branch information
offtherailz committed Dec 6, 2016
1 parent d33e1f8 commit 47d1a7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 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,8 @@ 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 obejctDiv = this.mapDiv.querySelector(":scope > .leaflet-map-pane .leaflet-objects-pane");
let svgs = obejctDiv && obejctDiv.getElementsByTagName("svg");
let svg = svgs && svgs[0];
let svgH;
let svgW;
Expand Down

0 comments on commit 47d1a7c

Please sign in to comment.