Skip to content

Commit

Permalink
unshown svg marker on firefox, fix #543
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzhenn committed Nov 16, 2017
1 parent 39685ba commit 362aeac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/layer/VectorLayer.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Browser from 'core/Browser';
import { extend, isNil } from 'core/util';
import { getFilterFeature, compileStyle } from 'core/mapbox';
import Extent from 'geo/Extent';
Expand All @@ -24,7 +25,7 @@ const options = {
'geometryEvents': true,
'defaultIconSize': [20, 20],
'cacheVectorOnCanvas': true,
'cacheSvgOnCanvas': false,
'cacheSvgOnCanvas': Browser.gecko,
'enableAltitude' : false,
'altitudeProperty' : 'altitude',
'drawAltitude' : false
Expand Down

0 comments on commit 362aeac

Please sign in to comment.