中国地图分省设色地图竖版高清矢量cdr、pdf格式2020年

中国地图分省设色地图竖版高清矢量cdr、pdf格式2020年pdf格式可以导入cdr软件ai软件另保存cdr,ai格式,可以编辑内容文字,矢量高清图,尺寸高1.4米宽1米。可以无限放大矢量图。下载地址:https://download.csdn.net/download/qq_27739745/18434604

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
非常感谢您的提问,以下是一个基于leaflet的分级设色地图代码实例: ```javascript // 创建地图对象 var map = L.map('map').setView([51.505, -0.09], 13); // 添加地图瓦片图层 L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { attribution: 'Map data © <a href="https://www.openstreetmap.org/">OpenStreetMap</a> contributors, <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>', maxZoom: 18, }).addTo(map); // 定义色阶数组 var colors = ['#ffffcc', '#c2e699', '#78c679', '#31a354', '#006837']; // 定义分级设色函数 function getColor(d) { return d > 1000 ? colors[4] : d > 500 ? colors[3] : d > 200 ? colors[2] : d > 100 ? colors[1] : colors[0]; } // 定义GeoJSON数据 var geojson = { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-0.09, 51.505] }, "properties": { "name": "London", "population": 8673719 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.935242, 40.730610] }, "properties": { "name": "New York", "population": 8622698 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [139.691706, 35.689487] }, "properties": { "name": "Tokyo", "population": 13929286 } } ] }; // 添加GeoJSON图层 L.geoJSON(geojson, { pointToLayer: function (feature, latlng) { return L.circleMarker(latlng, { radius: Math.sqrt(feature.properties.population) / 100, fillColor: getColor(feature.properties.population), color: "#000", weight: 1, opacity: 1, fillOpacity: 0.8 }).bindPopup(feature.properties.name + "<br>Population: " + feature.properties.population); } }).addTo(map); ``` 希望这个代码实例对您有所帮助!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

天赐信息科技

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值