Leaflet swap the coordinates when use geoJson(使用geoJson时传单交换坐标)
问题描述
我有一个小 Leaflet 应用程序,该应用程序从服务器获取 geoJson 对象并显示它,特别是 LineString
.我在服务器端使用的 JSON 解析器工作正常.客户端脚本也没问题.
I have little Leaflet application where the app get geoJson objects from server, and display it, specially LineString
. The JSON parser that i use on server side works properly. And the client side script was ok too.
但由于某些原因,我想在路线上画箭头,但在使用 L.geoJson()
时我不知道该怎么做.
But some reasons I would like to draw arrow on the routes, and I can't figure out how to do it when using L.geoJson()
.
带有L.geoJson()
的代码:
getJsonFrom(routeQueryURL, params, function(data) {
var a = L.geoJson(data, {
onEachFeature: bindRouteDirection,
}).addTo(map);
});
因为我不想在服务器端更改任何内容,所以我尝试了这个:
Because I don't want to change anything on server side, I tried this:
getJsonFrom(routeQueryURL, param, function(data) {
$.each(data, function(index, feature) {
var polyline = new L.Polyline(feature.geometry.coordinates, {
color: feature.properties.color,
opacity: 0.8
}).addTo(routeMapLayer);
var decorator = L.polylineDecorator(polyline, {
patterns: [{
offset: 25,
repeat: 50,
symbol: L.Symbol.arrowHead({
pixelSize: 15,
pathOptions: {
stroke: true,
color: feature.properties.color,
fillOpacity: 0.8,
polygon: false,
weight: 3
}
})
}]
}).addTo(routeMapLayer);
map.addLayer(routeMapLayer);
});
});
所以我从 geoJson 对象和其他一些数据中访问坐标数组,并将折线直接绘制到地图上.问题是它把我的路线放在中东中部而不是匈牙利,所以它实际上是交换坐标.为什么 L.Polyline
处理不同的形式 L.geoJson()
?
So i access the array of coordinates from the geoJson object, and some other data, and draw the polyline directly on to map.The problem is that it's put my route into the middle of middle east instead of Hungary, so it's actually swap the coordinates. Why does L.Polyline
handle the different form L.geoJson()
?
推荐答案
使用L.GeoJSON.coordsToLatLng()
并阅读 为什么有时坐标是 lat-lng 有时是 lng-纬度.
这篇关于使用geoJson时传单交换坐标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用geoJson时传单交换坐标
基础教程推荐
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01