civet commented on issue #8422: echarts与bmap结合使用绘制散点图,单击散点,地图自动放大 URL: https://github.com/apache/incubator-echarts/issues/8422#issuecomment-410161802 @Conquer369 发现禁用底图点击可以避免这个问题。 临时修改 extension/bmap/BMapCoordSys.js 源码: `var bmap = bmapModel.__bmap = new BMap.Map(bmapRoot);` 改为: `var bmap = bmapModel.__bmap = new BMap.Map(bmapRoot, {enableMapClick: false});`
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
