在上一篇 Leaflet入门指南:从零开始创建交互式地图 文章中,我们实现了一个基本的地图应用程序,在这篇文章中,我们将添加高德地图(采样GCJ-02坐标系)以及地图偏移的几种处理方法。
添加一个高德卫星地图和一个高德街道信息透明地图。
<script>
// osm
let openstreetmap = L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '© OpenStreetMap contributors'})
// 高德
let amap = L.layerGroup([L.tileLayer('http://webst02.is.autonavi.com/appmaptile?style=6&x={x}&y={y}&z={z}', {
minZoom:6,
maxZoom: 18,
attribution: '© AMap'
}), L.tileLayer('http://webst03.is.autonavi.com/appmaptile?style=8&x={x}&y={y}&z={z}', {
minZoom:6,
maxZoom: 18,
attribution: '© AMap'
})]);
let baseLayers = {
'OpenStreetMap': openstreetmap,
'Streets': amap
};
// 创建地图对象,并设置 OSM 作为默认底图
let map = L.map('map', {
center: [22.5247, 113.8578],
zoom: 13,
layers: [openstreetmap], // 设置 OSM 为默认底图
});
L.control.layers(baseLayers).addTo(map);
</script>
如上图,可以看到 marker 实际经纬度标定位置[22.5247, 113.8578]和显示位置存在一个偏差。高德使用 GCJ-02 坐标系,而我们的 marker 使用的是 WGS-84 坐标系,所以我们需要进行一个 WGS-84 坐标系到 GCJ-02 坐标系的转换。
从 https://github.com/googollee/eviltransform
仓库上面下载 eviltransform/javascript/
目录中的 transform.js
文件,把 transform.js
放入 index.html
同级目录。
在 html 中添加以下内容
<script type="text/javascript" src='./transform.js' crossorigin=""></script>
或使用 cdn 加速的 transform.min.js
文件
<script src="https://cdn.jsdelivr.net/npm/[email protected]/transform.min.js" crossorigin=""></script>
使用 eviltransform.wgs2gcj
方法即可实现 WGS-84 到 GCJ-02 的转换,我们只需要把我们输入的 22.5247, 113.8578
经纬度输入到下面这个函数中。
let geo = eviltransform.wgs2gcj(22.5247, 113.8578)
let marker = L.marker(geo).addTo(map);
marker.bindPopup("这是一个标记的弹出窗口。").openPopup();
在上面我们采用了输入端坐标直接转换成瓦片同坐标系的方法。
当然,我们也可以采用其他方法:
L.CRS.CustomCRS = L.extend({}, L.CRS.EPSG3857, {
// 实现 latLngToPoint 和 pointToLatLng 方法
latLngToPoint: function (latlng, zoom) {
// 判断经纬度的来源,瓦片请求不做处理,其他请求来源做偏移处理。
// if(latlng.lat === 22.5247 && latlng.lng === 113.8578){
// let a = eviltransform.wgs2gcj(latlng.lat, latlng.lng)
// latlng.lat = a.lat
// latlng.lng = a.lng
// }else
// {
// console.log("other")
// }
// 自定义实现 latLngToPoint 方法
var projectedPoint = this.projection.project(latlng);
var scale = this.scale(zoom);
var point = this.transformation.transform(projectedPoint, scale);
console.log("latLngToPoint:",point.x,point.y)
return point;
},
pointToLatLng: function (point, zoom) {
// 自定义实现 pointToLatLng 方法
var scale = this.scale(zoom);
var untransformedPoint = this.transformation.untransform(point, scale);
var latlng = this.projection.unproject(untransformedPoint);
console.log("pointToLatLng:",point.x,point.y)
return latlng;
}
})
在实例化 map 时,使用自定义的 L.CRS.CustomCRS。
let map = L.map('map', {crs: window.L.CRS.CustomCRS}).setView([22.5247, 113.8578], 13);
// 定义 CustomMarker 插件
L.CustomMarker = L.Marker.extend({
options: {
// 这里可以添加自定义的选项
},
// 初始化方法
initialize: function (latlng, options) {
L.Marker.prototype.initialize.call(this, latlng, options);
},
update: function () {
if (this._icon && this._map) {
// 偏移处理
if(isSelectedAMap){
let geo = eviltransform.wgs2gcj(this._latlng.lat, this._latlng.lng)
let pos = this._map.latLngToLayerPoint(geo).round();
this._setPos(pos);
}else{
let pos = this._map.latLngToLayerPoint(this._latlng).round();
this._setPos(pos);
}
}
return this;
},
});
// 工厂方法
L.customMarker = function (latlng, options) {
return new L.CustomMarker(latlng, options);
};
使用方法:
let marker = L.customMarker([22.5247, 113.8578]).addTo(map);
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Leaflet@cheungxiongweititle>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin="">script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/transform.min.js" crossorigin="">script>
<style>
html, body {
overflow: hidden;
background: #fff;
width: 100%;
height: 100%;
margin: 0;
position: absolute;
top: 0;
}
#map {
height: 100%;
width: 100%;
margin: 0 auto;
background-color: #01172a;
}
style>
head>
<body>
<div id="map">div>
body>
<script>
// 定义 CustomMarker 插件
L.CustomMarker = L.Marker.extend({
options: {
// 这里可以添加自定义的选项
},
// 初始化方法
initialize: function (latlng, options) {
L.Marker.prototype.initialize.call(this, latlng, options);
},
update: function () {
if (this._icon && this._map) {
// 偏移处理
if(isSelectedAMap){
let geo = eviltransform.wgs2gcj(this._latlng.lat, this._latlng.lng)
let pos = this._map.latLngToLayerPoint(geo).round();
this._setPos(pos);
}else{
let pos = this._map.latLngToLayerPoint(this._latlng).round();
this._setPos(pos);
}
}
return this;
},
});
// 工厂方法
L.customMarker = function (latlng, options) {
return new L.CustomMarker(latlng, options);
};
// osm
let openstreetmap = L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '© OpenStreetMap contributors'})
// 高德
let amap = L.layerGroup([L.tileLayer('http://webst02.is.autonavi.com/appmaptile?style=6&x={x}&y={y}&z={z}', {
minZoom:6,
maxZoom: 18,
attribution: '© AMap'
}), L.tileLayer('http://webst03.is.autonavi.com/appmaptile?style=8&x={x}&y={y}&z={z}', {
minZoom:6,
maxZoom: 18,
attribution: '© AMap'
})]);
let baseLayers = {
'OpenStreetMap': openstreetmap,
'Streets': amap
};
// 创建地图对象,并设置 OSM 作为默认底图
let map = L.map('map', {
center: [22.5247, 113.8578],
zoom: 13,
layers: [amap], // 设置 OSM 为默认底图
});
L.control.layers(baseLayers).addTo(map);
let isSelectedAMap = true
// 监听底图切换事件
map.on('baselayerchange', function (event) {
// 获取当前选择的地图图层
let selectedLayer = event.layer;
// 判断当前选择的地图
if (selectedLayer === openstreetmap) {
console.log('当前选择的地图是 OpenStreetMap');
// 在这里执行其他逻辑
isSelectedAMap = false
} else if (selectedLayer === amap) {
console.log('当前选择的地图是 Streets');
// 在这里执行其他逻辑
isSelectedAMap = true
}
});
let marker = L.customMarker([22.5247, 113.8578]).addTo(map);
script>
html>
本文转载自:https://blog.csdn.net/cheungxiongwei/article/details/132059272