npm install leaflet
注意构建webpack配置
module: {rules: [{test: /\.(png|jpg|gif|jpeg|svg)$/,include: /node_modules[\\/]leaflet/,use: [{loader: 'url-loader',options: {outputPath: 'static/images'}}]}]
}
注意外部资源代理方式
proxy: {'/cdn': {target: 'https://' + ip + ':port',ws: true,secure: false}
}
注意引入方式
import L from 'leaflet';
import 'leaflet/dist/leaflet.css';
瓦片资源下载器
链接:https://pan.quark.cn/s/7fb319d394fb
实现效果图
源码地址:https://gitee.com/anily/leaflet