This commit is contained in:
BianLzhaoMin 2025-07-14 16:17:57 +08:00
parent 1906c8174e
commit 4457e9a2b6
1 changed files with 1 additions and 1 deletions

View File

@ -397,7 +397,7 @@ function initMap(list) {
if (objParams.points) { if (objParams.points) {
let points = JSON.parse(objParams.points); let points = JSON.parse(objParams.points);
$.each(points, function (i, item) { $.each(points, function (i, item) {
addMarker(item.lng, item.lat); addMarker(item.lng || item.lon, item.lat || item.lat);
}); });
viewPointLine(); viewPointLine();
} }